本文介绍了如何搜索表中的所有列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 SQL Server 中搜索表的所有列?
How can I search all columns of a table in SQL Server?
推荐答案
SELECT ...
FROM yourtable
WHERE 'val' IN (field1, field2, field3, field4, ...)
如果您正在寻找精确的全场匹配.如果您正在寻找子字符串匹配,则必须走很长一段路:
if you're looking for exact full-field matches. If you're looking for substring matches, you'll have to go about it the long way:
WHERE field1 LIKE '%val%' or field2 LIKE '%val%' etc....
这篇关于如何搜索表中的所有列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!