mysql 多表连接查询实例

WBOY
WBOYオリジナル
2016-06-01 09:57:101200ブラウズ

如下:两个表info,tag 

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

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

这样写就有问题: 

<code class="language-sql">select info.id, info.name from tag,info where info.name like ‘%'+tag.name+'%' </code>

 

正确: 

<code class="language-sql">select info.id, info.name from tag,info where info.name like concat( '%',tag.name, '%') </code>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。