Syntax alias problem based on delete in mysql

Syntax alias problem based on delete in mysql

MySQL delete syntax alias problem

First, confirm that the delete statement in MySQL supports aliases;

When writing the delete syntax yourself, the statement is as follows:

delete from tableA a where a.c_pk_id = '123'

However, an alias usage error will be reported, as follows:

[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'q
WHERE
q.C_PLY_NO = '1100107000404000220150000001'
AND q.N_EDR_PRJ_NO = '1' at line 3

Through the query data, I learned that the syntax of MySQL delete is somewhat special, as follows:

delete a from tableA a where a.c_pk_id = '123'

Deleted successfully! ! !

After comparison, we can know that when using an alias in a delete statement, you need to write an additional alias after delete.

Using alias in mysql delete statement

grammar:

delete <alias> from <table> <alias> where <alias>.<field>...

The alias must appear once after the delete.

Deletion syntax between multiple tables:

DELETE t1, t2 FROM t1 INNER JOIN t2 INNER JOIN t3
WHERE t1.id=t2.id AND t2.id=t3.id;

Or:

DELETE FROM t1, t2 USING t1 INNER JOIN t2 INNER JOIN t3
WHERE t1.id=t2.id AND t2.id=t3.id;

LEFT JOIN:

DELETE t1 FROM t1 LEFT JOIN t2 ON t1.id=t2.id WHERE t2.id IS NULL;

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Basic tutorial on using table aliases and field aliases in MySQL
  • MySQL data operation-use of DML statements
  • A comprehensive summary of frequently used statements in MySQL (must read)

<<:  Talking about ContentType(s) from image/x-png

>>:  Two methods to disable form controls in HTML: readonly and disabled

Recommend

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by i...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

JavaScript Html to implement the mobile red envelope rain function page

This article example shares the specific code of ...

Summary of Docker configuration container location and tips

Tips for using Docker 1. Clean up all stopped doc...

How to run multiple MySQL instances in Windows

Preface In Windows, you can start multiple MySQL ...

Solution to Tomcat server failing to open tomcat7w.exe

I encountered a little problem when configuring t...

How to set the default value of a MySQL field

Table of contents Preface: 1. Default value relat...

Example of how to set up a multi-column equal height layout with CSS

Initially, multiple columns have different conten...

Detailed explanation of JS ES6 coding standards

Table of contents 1. Block scope 1.1. let replace...

How to Understand and Identify File Types in Linux

Preface As we all know, everything in Linux is a ...

A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

1. Check the PHP version after entering the termi...

Detailed Example of JavaScript Array Methods

Table of contents Introduction Creating an Array ...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

Detailed explanation of MySQL 8.0 dictionary table enhancement

The data dictionary in MySQL is one of the import...