news表:
tag表:
为什么用下面这条SQL语句
select * from tag where tid in (select tids from news where nid=1);
查询结果是:
1 PHP
我想要的查询结果是:
1 PHP
2 Mysql
3 Apache
news表:
tag表:
为什么用下面这条SQL语句
select * from tag where tid in (select tids from news where nid=1);
查询结果是:
1 PHP
我想要的查询结果是:
1 PHP
2 Mysql
3 Apache
没这么复杂啦
select * from tag where tid instr (select tids from news where nid=1);就行了
5 回答3.4k 阅读✓ 已解决
3 回答3.7k 阅读✓ 已解决
5 回答1.4k 阅读
2 回答2.1k 阅读
3 回答2.1k 阅读
1 回答3.6k 阅读
1 回答886 阅读
SELECT .. IN ..
没有办法做到这一点,可以试试FIND_IN_SET
: http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_...要实现你想要的结果可以这样写: