> 데이터 베이스 > MySQL 튜토리얼 > 『MySQL』多表之间字段的匹配_MySQL

『MySQL』多表之间字段的匹配_MySQL

WBOY
풀어 주다: 2016-06-01 13:35:44
원래의
994명이 탐색했습니다.

bitsCN.com

1 $sql=$empire->query("select table.title,lianxi,table.dizhi,table.id from table,table1 where table1.sid like concat( '%|',table.id,'|%') and table1.id=".$navinfor[id]."");2 while($r=$empire->fetch($sql))3 {4         $title=$r['title'];5         $lianxi=$r['lianxi'];6         $dizhi=$r['dizhi'];7 }
로그인 후 복사

如下:两个表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, '%')

 

bitsCN.com
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿