Deleting a single table: DELETE FROM tableName WHERE columnName = value; Delete all rows in a table: That is: retain the table structure, attributes, and indexes DELETE FROM tablename; DELETE * FROM tablename; Delete all contents in the same table (delete data, table structure) TRUNCATE customer; Cannot report how many rows were deleted and can only be used for a single table Deleting multiple table connections: DELETE orders,itrms FROM orders,items WHERE orders.userid = items.userid AND orders.orderid = items.orderid AND orders.date<"2000/03/01"; The name of the table to be deleted is listed after DELETE, and the table used in the join condition is listed after FROM. Suppose you want to delete all wine farms in the BV region, but not the place names. DELETE winery FROM region,winery WHERE winery.regionid = region.regionid AND region.regionname = 'BV'; The query only affects the winery table, but also uses winery and region to find the records that need to be deleted. Using advanced join queries DELETE orders,items FROM orders INNER JOIN otems ON orders.orderid = items.orderid AND orders.userid = items.userid WHERE orders.date<"2000/03/01"; You can also use nested queries (the inner query cannot reference the deleted data), GROUP BY, and HAVING in the DELETE statement; You can also use ORDER BY in a single-table query, but it doesn't make much sense unless you use it with LIMIT to delete some data rows. Add the quick modifier to quickly delete index items, speeding up large or frequent deletion operations. DELETE QUICK FROM customer WHERE userid<10; Only available for MyISAM tables. Cleaning up MyISAM tables OPTIMIZE TABLE customer; The above is the mysql delete multi-table connection deletion function introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: How to use Nginx to realize the coexistence of multiple containers in the server
>>: Steps to package and deploy the Vue project to the Apache server
This article example shares the specific code of ...
Preface Recently, our company has configured mbp,...
Table of contents 1. Introduction to Jenkins 2. I...
In fact many people will say “I’ve seen that table...
Table of contents 【Function Background】 [Raw SQL]...
Prepare Environmental information for this articl...
Copy code The code is as follows: <div style=&...
Table of contents 1. Installation and introductio...
Table of contents Preface Create a bridge network...
1. Download First of all, I would like to recomme...
Table of contents Complex query and step-by-step ...
This article mainly records the effect of using j...
What is Let’s first look at the concept of Docker...
Table of contents 1. What I am going to talk abou...
Table of contents 1. Date 2. RegExp 3. Original p...