时间:2021-07-01 10:21:17 帮助过:10人阅读
我们需要把这部分脏数据删除到,在删除的过程中我写的delete sql语句不能执行不知道为什么,可以同样的语句执行
select 是没有问题的
如:
delete from student a where a.id in (1,2);()
select a.* from student a where a.id in (1,2);()
这是什么原因了呢?
结果处理:
delete 在写操作一张表的时候 不用别名操作成功!
如:
delete from student where id in (1,2);()
我使用mysql版本:5.1.30-community-log
这是在开发中遇到的一个小问题,积累起来。
bitsCN.com