drop table Drop directly deletes table information, which is the fastest, but data cannot be retrieved For example, to delete the user table: drop table user; truncate (table) truncate deletes table data but not its structure. It ranks second in speed but cannot be used with where. For example, to delete the user table: truncate table user; delete from delete deletes the data in the table without deleting the table structure. It is the slowest, but can be used with where to delete the specified rows. For example, delete all data in the user table delete from user; Delete the specified record in the user table delete from user where user_id = 1; The difference between the three methods Similarities
Differences
Quick Facts Difference between delete and delete from If you only delete one table, the effect is the same; if you need to join other tables, you need to use from delete tb1 from tb1 m where id in (select id from tb2); Usage Summary
This concludes this article about three ways to delete a table in MySQL (summary). For more information about deleting a table in MySQL, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Analysis of Nginx Rewrite usage scenarios and configuration methods
>>: Summary of 28 common JavaScript string methods and usage tips
Table of contents Method 1 1. Configuration and i...
Table of contents 1. Always use key in v-for loop...
Table of contents Effect display Component Settin...
Preface: Sometimes in a route, the main part is t...
In the many projects I have worked on, there is b...
Often, after a web design is completed, the desig...
Table of contents 1. Download the MySQL installat...
1. MyISAM storage engine shortcoming: No support ...
In the process of making web pages, we often use f...
Table of contents 1. Introduction 2. Prototype ch...
I won't say much nonsense, let's just loo...
border-radius: CSS3 rounded corners Syntax: borde...
Table of contents 1. Recipe Collection 1.1 Projec...
Table of contents Preface 1. The effect is as sho...
Use JS to implement object-oriented methods to ac...