摘要:
mysql执行增删改查语句返回受影响行数 insert into `MyTestTable`(`ID`,`Name`) select '1','role1' union all select '2','role2' union all select '3','role3'; select row_c 阅读全文
摘要:
执行mySQL的DELETE语句 进行批量删除 mysql客户端执行语句: delete from tb_acs_plan where ID in (12,9) and ACSPID not in (select distinct(ACSPID) from tb_acs_basic); c#代码编写 阅读全文