mysql 去除重複資料 語句

來源:互聯網
上載者:User

標籤:style   blog   http   color   strong   io   資料   for   

糾結的過程:

mysql> select * from role group by role_name,deleted;+---------+-----------+---------+| role_id | role_name | deleted |+---------+-----------+---------+| 2       | xue       | 12      || 1       | zhao      | 12      || 3       | zhao      | 13      |+---------+-----------+---------+3 rows in setmysql>  delete from role c where c.role_id not in (select b.role_id from role c group by role_name,deleted);1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘where c.role_id not in (select b.role_id from role c group by role_name,deleted)‘ at line 1mysql>  select *  from role c where c.role_id not in (select b.role_id from role b  group by role_name,deleted);+---------+-----------+---------+| role_id | role_name | deleted |+---------+-----------+---------+| 4       | xue       | 12      |+---------+-----------+---------+1 row in setmysql>  delete from role c where c.role_id not in (select b.role_id from role b  group by role_name,deleted);1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘where c.role_id not in (select b.role_id from role b  group by role_name,deleted‘ at line 1mysql>  delete from role  where role_id not in (select b.role_id from role b  group by role_name,deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where role_id not in (select role_id from role   group by role_name,deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where not role_id  in (select role_id from role   group by role_name,deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where role_id not in (select t.role_id from role t  group by role_name,deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where role_id not in (select t.role_id from role t  group by t.role_name,t.deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where role_id NOT IN (select t.role_id from role t  group by role_name,deleted);1093 - You can‘t specify target table ‘role‘ for update in FROM clausemysql>  delete from role  where role_id NOT IN select *  from ( (select t.role_id from role t  group by role_name,deleted));1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘select *  from ( (select t.role_id from role t  group by role_name,deleted))‘ at line 1mysql>  delete from role  where role_id NOT IN ( select *  from ( (select t.role_id from role t  group by role_name,deleted)));1248 - Every derived table must have its own aliasmysql>  delete from role  where role_id NOT IN ( select *  from  ( select t.role_id from role t  group by t.role_name,t.deleted));1248 - Every derived table must have its own alias

終於通了:

mysql>  delete from role  where role_id NOT IN ( select *  from  ( select t.role_id from role t  group by t.role_name,t.deleted) t1);Query OK, 1 row affected


參考:
mysql比較作嘔的一個delete in操作
http://www.educity.cn/wenda/594988.html

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.