MySQL delete syntax alias problemFirst, 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:
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 statementgrammar: 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:
|
<<: Talking about ContentType(s) from image/x-png
>>: Two methods to disable form controls in HTML: readonly and disabled
MySQL 5.7.9 version sql_mode=only_full_group_by i...
Install Nginx First pull the centos image docker ...
This article example shares the specific code of ...
Tips for using Docker 1. Clean up all stopped doc...
Use CSS to prevent Lightbox to realize the displa...
Preface In Windows, you can start multiple MySQL ...
I encountered a little problem when configuring t...
Table of contents Preface: 1. Default value relat...
Initially, multiple columns have different conten...
Table of contents 1. Block scope 1.1. let replace...
Preface As we all know, everything in Linux is a ...
1. Check the PHP version after entering the termi...
Table of contents Introduction Creating an Array ...
In daily operation and maintenance work, nginx se...
The data dictionary in MySQL is one of the import...