1
如果條件存在,我想更新數據庫中的記錄。如何在使用executeNonQuery時返回sql所需的值()
set nocount off;
if exists (select * from ParentTable where [email protected])
update ChildTable set [email protected],[email protected] where [email protected];
else return -2;
但是,如果ParentID不存在,則返回-1。
我使用的ExecuteNonQuery()來運行該程序
您是否嘗試過使用輸出變量? – aggietech 2012-02-09 18:29:27