发布网友 发布时间:2022-05-01 00:07
共4个回答
热心网友 时间:2022-04-13 01:10
你也可以用另外一种方式 ,例如 delete a from a,(select id from XXXX where XXX) b where a.id = b.id;这样就可以了热心网友 时间:2022-04-13 02:28
delete from table where id in (select user_id from table2)
热心网友 时间:2022-04-13 04:03
delete from xxx where id in (select xx from xxxxx where xxxxx)热心网友 时间:2022-04-13 05:54
可以套用子查询的,这种问题,试试就可以得到答案