1

基本上,我想在一个名为fooWHERE 的 TABLE 中选择值,该foo列等于foo1or foo2

这可能吗,使用尽可能少的查询代码?

我认为这可能需要正则表达式,但如果有更短的方法,那就这样吧。

4

1 回答 1

4

使用 IN 或条件与 OR 的组合

select * from table where col in ('foo1', 'foo2')

select * from table where col = 'foo1' or col = 'foo2'
于 2013-03-11T07:01:13.897 回答