程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 關於mysql delete的問題小結

關於mysql delete的問題小結

編輯:關於MYSQL數據庫
由於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;

今天,在開發自己的項目中需要把項目原來的數據導入到新的系統中,在這個過程中會產生部分髒數據。

我們需要把這部分髒數據刪除到,在刪除的過程中我寫的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

這是在開發中遇到的一個小問題,積累起來。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved