首页 > 数据库 > MySQL > 正文

MySQL多表之间字段的匹配实现代码

2024-07-24 12:40:59
字体:
来源:转载
供稿:网友
复制代码 代码如下:     $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]."");  while($r=$empire->fetch($sql))  {  $title=$r['title'];  $lianxi=$r['lianxi'];  $dizhi=$r['dizhi'];  }      如下:两个表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, '%')   
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表