tablea 中有个字段myvalue 类型nvarchar. 字段值如这样:1,2,3,4,9,12,15。
我想从另一个表中tableb查询记录将id(int) 在myvalue 中的全部取出。请问如何实现。这样写是不行的:select b.id from tablea a,tableb b where b.id in (select myvalue from tablea where tableaid= )