INFORMIX 语法错误
很奇怪
select * from test_chy_1 a
where a.id1 in(select b.id1 from test_chy b where a.id1 = b.id1)
这样写不会报错
delete from test_chy_1 a
where a.id1 in(select b.id1 from test_chy b where a.id1 = b.id1)
这样写报语法错误
请教各位什么原因。谢谢。 问题已经解决了。下面的SQL语句没有问题了。
delete from test_chy_1
where id1 in (select id1 from test_chy)
谢谢。 自问自答,呵呵!
页:
[1]