将值与mysql中表的所有字段进行比较[重复]
Posted
技术标签:
【中文标题】将值与mysql中表的所有字段进行比较[重复]【英文标题】:compare value with all the fields of a table in mysql [duplicate] 【发布时间】:2011-09-07 18:12:15 【问题描述】:我有一个名为 info_acc (id,state,country,zip) 的表,现在我需要将一组关键字与该表的所有字段进行比较,假设值为 Alaska,我需要将其与 id、state、country、 zip 并与任何文件匹配,然后将选择行。我怎样才能以有效的方式做到这一点?谢谢
【问题讨论】:
在WHERE
子句中使用OR
。
【参考方案1】:
请阅读以下文章:
Using mysql Full-text Searching
或使用***:
How to implement a Keyword Search in MySQL?
mysql keyword search
【讨论】:
以上是关于将值与mysql中表的所有字段进行比较[重复]的主要内容,如果未能解决你的问题,请参考以下文章