我們需要把這部分髒數據刪除到,在刪除的過程中我寫的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
這是在開發中遇到的一個小問題,積累起來。