我们是否有任何内置函数可以告诉我该值是否存在于列中
我们是否有任何内置函数可以告诉我该值是否存在于列中。
我的意思是我想知道该列中是否存在某些特定值 我有要检查的东西列表,例如 A、B、C 存在于 col2 中的 tabl3 的某些行数... 那么我是否有一些函数可以给出 true 或 false...或类似的东西
Do we have any inbuilt function which will tell me if this value present in the column.
I mean i want to know wether some particular value is there or not in the column
I have list of thigs to be checked like A,B,C is present in col2 at some rows number of tabl3...
So do i have some function which gives like true or false...or anything like that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 INSTR 函数或 LIKE 运算符来测试字符串(例如表中的一列)中是否存在一个字符串:
然后您可以使用 OR 运算符添加其他谓词。
You can test if one string exits within a string (e.g. a column in your table) with the INSTR function, or with the LIKE operator:
You can then add additional predicates by using the OR operator.