mysql数据库如何搜索关键词

mysql数据库如何搜索关键词,第1张

办法如下:

select * from table1 where concat(`字段`,`字段`,`字段` ) like '%关键字%' union

select * from table2 where concat(`字段`,`字段`,`字段` ) like '%关键字%' union

select * from table3 where concat(`字段`,`字段`,`字段` ) like '%关键字%' union

select * from table4 where concat(`字段`,`字段`,`字段` ) like '%关键字%' union

select * from table5 where concat(`字段`,`字段`,`字段` ) like '%关键字%' 

前提是查询出来的字段个数要一样,类型要对应好,至于如何得到正确且符合你需要的sql就要在程序类中处理了。

select * from table1 t1,table2 t2 where t1.id=t2.id

这样就是联合查询啊

left join

right join

inner join

详细的看 *** 作手册


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10093256.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存