我正在尝试针对 Informix 运行以下 db 命令:
delete from table1
where u_id in (select u_id
from table2
where c_id in (select c_id
from ptable
where name = 'Smith'
and dob = '29-08-1946'));
我将它作为字符串传递给 MS 数据应用程序块中的 db.ExecuteNonQuery 方法,我得到了上述错误?