Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上,我想在一个名为fooWHERE 的 TABLE 中选择值,该foo列等于foo1or foo2。
foo
foo1
foo2
这可能吗,使用尽可能少的查询代码?
我认为这可能需要正则表达式,但如果有更短的方法,那就这样吧。
使用 IN 或条件与 OR 的组合
select * from table where col in ('foo1', 'foo2') select * from table where col = 'foo1' or col = 'foo2'