In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Editor to share with you what are the limitations of the delete from where sub-query in mysql. I hope you will learn a lot after reading this article. Let's discuss it together.
1. When using mysql for delete from operation, if the FROM sentence of the subquery and the update / delete object use the same table, an error will occur. (recommended: MySQL tutorial)
Mysql > DELETE FROM 'tab' where id in (select min (id) from tag GROUP BY field1,field2 HAVING COUNT (id) > 1)
Error: You can't specify target table 'tab' for update in FROM clause. (the target table 'tab' cannot be specified for updates in the FROM clause)
In most cases, the limitation of "the same table" can be solved by adding an extra layer of select alias table, like this.
DELETE FROM 'tab' where id in (select id from (select max (id) from' tab' GROUP BY field1,field2 HAVING COUNT (id) > 1) ids)
2.delete from table... Aliases cannot be used for table
Mysql > delete from table a where a.id in (1 > 2); (syntax error)
Mysql > select a. * from table a where a.id in (1); (executed successfully)
After reading this article, I believe you have a certain understanding of the restrictions on delete from where sub-query in mysql. If you want to know more about it, welcome to follow the industry information channel. Thank you for your reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.