mysql in 函数的子查询问题

news表:
图片描述

tag表:
图片描述

为什么用下面这条SQL​语句

select * from tag where tid in (select tids from news where nid=1);

查询结果是:
1 PHP

我想要的查询结果是:
1 PHP
2 Mysql
3 Apache

阅读 4.8k
2 个回答
新手上路,请多包涵

没这么复杂啦
select * from tag where tid instr (select tids from news where nid=1);就行了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题