标签: mysql sql regex
基本上,我想在名为foo的TABLE中选择值foo列等于foo1或foo2。
foo
foo1
foo2
这是可能的,只需尽可能少的查询代码吗?
我认为这可能需要正则表达式,但如果有更短的方法,那就这样吧。
答案 0 :(得分:4)
使用IN或条件组合与OR
select * from table where col in ('foo1', 'foo2') select * from table where col = 'foo1' or col = 'foo2'