不好意思,是我刚才输入错了,在程序中使用的是这样的
sql;='select id,name from table1 where id not in'+''''+'('+'select id from table2'
+''''+')'+'''';
query1.sql.add('sql')
可运行时提示'('附近有错
谢谢,子查询是可以了,但我还有两点疑问,
一、是什么时候用'where id like'+''''+'100%'+''''这种方式,什么时候又不用。
二、子查询能不能包括两个以上字段where id,name not in(select id,name from table2);
再次感谢txdelhi帮助!