select a.person from A a where a.person in (select b.person from B b where....)
A与B表都有一个person字段
查出来的结果不对,换成一个C表,select a.person from A a where a.person in (select c.pp from C c where....)
C表的相应条件的字段是pp,结果就对了,用find_in_set方式就对了,求解,很郁闷的一个现象
A与B表都有一个person字段
查出来的结果不对,换成一个C表,select a.person from A a where a.person in (select c.pp from C c where....)
C表的相应条件的字段是pp,结果就对了,用find_in_set方式就对了,求解,很郁闷的一个现象