关于mysql delete的问题小结
由于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;今天,在开发自己的项目中需要把项目原来的数据导入到新的系统中,在这个过程中会产生部分脏数据。 我们需要把这部分脏数据删除到,在删除
用户评论