Mysql delete data and data table method example

Mysql delete data and data table method example

It is very easy to delete data and tables in MySQL, but you need to be careful because all data will disappear once deleted.

Deleting Data

To delete data in a table, use the delete keyword.

Delete data with specified conditions

Delete the user with id 1 in the user table:

delete from User where id = 1;

Delete all data in the table

Delete all data in the table without changing the table structure.

For MyISAM, disk space will be released immediately, but InnoDB will not release disk space.

delete from User;

Free up disk space

optimize table User;

Delete a table

There are two ways to delete a data table:

  1. Delete the data and table structure in the data table
  2. Only delete the data in the table and keep the table structure

drop

Using the drop keyword will delete the entire table, leaving nothing behind.

drop table User;

truncate

The truncate keyword only deletes the data in the table and retains the table structure.

truncate table User;

Question for consideration: How to batch delete tables with the same prefix?

There is no direct command to implement drop table like 'wp_%' , but it can be spliced ​​through MySQL syntax.

-- Delete the table starting with "wp_":
SELECT CONCAT( 'drop table ', table_name, ';' ) AS statement
FROM information_schema.tables
WHERE table_schema = 'database_name' AND table_name LIKE 'wp_%';

Here, replace database_name with the name of the database and wp_ with the prefix of the tables that need to be deleted in batches.

Note that only the drop command can be used like this:

drop table if exists tablename`;

truncate can only be used like this:

truncate table `tp_trade`.`setids`;

Summarize

  • When you no longer need the table, use drop;
  • When you still want to keep the table but delete all records, use truncate;
  • When you want to delete some records, use delete.

This is the end of this article about Mysql deleting data and data tables. For more information about Mysql deleting data and data tables, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of common MySQL table design errors
  • MySQL data table partitioning strategy and advantages and disadvantages analysis
  • MySQL advanced features - detailed explanation of the concept and mechanism of data table partitioning
  • How to construct a table index in MySQL
  • How to maintain MySQL indexes and data tables
  • Setting the engine MyISAM/InnoDB when creating a data table in MySQL
  • How to delete a MySQL table
  • About MYSQL, you need to know the data types and operation tables
  • Detailed explanation of creating a data table in MySQL and establishing primary and foreign key relationships
  • A simple method to merge and remove duplicate MySQL tables
  • How to design MySQL statistical data tables

<<:  Vue3 encapsulates the magnifying glass effect component of Jingdong product details page

>>:  Docker meets Intellij IDEA, Java development improves productivity tenfold

Recommend

Vue implements adding watermark to uploaded pictures

This article shares the specific implementation c...

Implementation of the Pycharm installation tutorial on Ubuntu 18.04

Method 1: Download Pycharm and install Download a...

Implementation of Redis master-slave cluster based on Docker

Table of contents 1. Pull the Redis image 2. Crea...

Understanding and using React useEffect

Table of contents Avoid repetitive rendering loop...

Rendering Function & JSX Details

Table of contents 1. Basics 2. Nodes, trees, and ...

HTML+CSS implementation code for rounded rectangle

I was bored and suddenly thought of the implementa...

Why the CSS attribute value clear:right does not work in detail

Using the clear property to clear floats is a comm...

Using cursor loop to read temporary table in Mysql stored procedure

cursor A cursor is a method used to view or proce...

HTML unordered list bullet points using images CSS writing

Create an HTML page with an unordered list of at l...

Vue.js performance optimization N tips (worth collecting)

Table of contents Functionalcomponents Childcompo...

The difference between html Frame, Iframe and Frameset

10.4.1 The difference between Frameset and Frame ...

Detailed explanation of the solution to font blur when using transform in CSS3

This question is very strange, so I will go strai...

Implementation of nginx worker process loop

After the worker process is started, it will firs...

Modularity in Node.js, npm package manager explained

Table of contents The basic concept of modularity...