当前位置:Gxlcms > mysql > 关于mysqldelete的问题_MySQL

关于mysqldelete的问题_MySQL

时间:2021-07-01 10:21:17 帮助过:17人阅读

由于mysql数据库的相关内部问题

导致delete from table where col not in (select col from table group by xx)

会提示报错

我们要做的是

create table tmp selete col from table group by xx;

delete from table where col not in (select col from tmp);

drop table tmp;

人气教程排行