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.
我有一张桌子,里面很少有诽谤。检查其中一列是否包含特定值的最佳方法是什么?
例子:
| Column 1 | Column 2 | Column 3 | |----------|----------|----------| | aaa | bbb | ccc | | ddd | eee | fff | | ggg | hhh | iii |
例如,我想检查表中是否存在值“eee”。
谢谢!
SELECT * FROM table WHERE [Column 1]='eee' OR [Column 2]='eee' OR [Column 3]='eee';
但是你应该重新考虑你的数据库设计,因为这样的查找不是很常见 - 使用这种方法应该有一个错误的原则!