mysql delete multi-table connection deletion function

mysql delete multi-table connection deletion function

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:
  • A brief discussion on the execution details of Mysql multi-table join query
  • MySQL multi-table join introductory tutorial
  • MySQL multi-table join query example explanation
  • Basic multi-table join query tutorial in MySQL
  • Detailed explanation of MySQL multi-table join query

<<:  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

Recommend

vue+ts realizes the effect of element mouse drag

This article example shares the specific code of ...

Summary of using the exclamation mark command (!) in Linux

Preface Recently, our company has configured mbp,...

Implementation of Jenkins+Docker continuous integration

Table of contents 1. Introduction to Jenkins 2. I...

10 HTML table-related tags

In fact many people will say “I’ve seen that table...

MYSQL Left Join optimization (10 seconds to 20 milliseconds)

Table of contents 【Function Background】 [Raw SQL]...

Detailed tutorial on installing MySQL 8 in CentOS 7

Prepare Environmental information for this articl...

How to generate PDF and download it in Vue front-end

Table of contents 1. Installation and introductio...

Steps to create a CentOS container through Docker

Table of contents Preface Create a bridge network...

How to install MySQL 8.0 database on M1 chip (picture and text)

1. Download First of all, I would like to recomme...

Three strategies for rewriting MySQL query statements

Table of contents Complex query and step-by-step ...

Writing a web calculator using javascript

This article mainly records the effect of using j...

Detailed explanation of Docker container data volumes

What is Let’s first look at the concept of Docker...

Detailed explanation of Vue data proxy

Table of contents 1. What I am going to talk abou...

Basic reference types of JavaScript advanced programming

Table of contents 1. Date 2. RegExp 3. Original p...