表1有一个字段为ksort 值为1,2,3,这三个值分别对应表2中的每条数据的ID, 表2有N条数据 怎么查询能查到ksort里面值得三条数据?
天蓬老师2017-04-11 10:19:14
自己搞定了
select ID from 表2 where (select CONCAT(',', ksort , ',')AS ksort from 表1 ) LIKE CONCAT('%,', ID , ',%');
PHP中文网2017-04-11 10:19:14
selct * from 表2 where id in ( select ksort from 表1)
没看懂你到底在问什么。大致就是这样?