欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql 多表连接查询实例

程序员文章站 2022-05-13 23:01:53
...
如下:两个表info,tag

info 表
id name
1 aa和bb
2 bb和cc
3 ee和dd

tag表
1 aa
2 bb
tag表中 name 匹配 info 中的name

这样写就有问题:

select info.id, info.name from tag,info where info.name like ‘%'+tag.name+'%' 

正确:

select info.id, info.name from tag,info where info.name like concat( '%',tag.name, '%')