1. 首页
  2. 编程语言
  3. VB
  4. 关于mysql delete的问题小结

关于mysql delete的问题小结

上传者: 2020-12-17 11:41:59上传 PDF文件 33.76KB 热度 25次
由于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;今天,在开发自己的项目中需要把项目原来的数据导入到新的系统中,在这个过程中会产生部分脏数据。 我们需要把这部分脏数据删除到,在删除
用户评论