關於mysql delete的問題小結

來源:互聯網
上載者:User

由於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

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.