Determine whether a record already exists before inserting a SQL statementINSERT INTO test(A,B) select 'ab',2 WHERE NOT EXISTS (SELECT * FROM test WHERE A='ab'); Simple collection of judgments when inserting sqlWhen the user module or other modules require database uniqueness, you need to first determine whether the data already exists in the database before inserting it; This is the most basic SQL insert statement. ```sql ```sql INSERT INTO user(name,password) values(admin,123456) Next, transform it into inserting to determine whether #{parameter} exists ```sql INSERT INTO user(name, password) SELECT #{admin},#{123456} FROM DUAL WHERE NOT EXISTS (SELECT name,password FROM user WHERE name= #{admin} and password= # {123456}); `` This is done, the query return value = 0 means failure = 1 means success 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:
|
<<: The most comprehensive collection of front-end interview questions
>>: How to draw a vertical line between two div tags in HTML
I have been making websites for a long time, but I...
Table of contents 1. Introduction to Compose 2. C...
Preface The following are the ways to implement L...
First, let's talk about why we need to divide...
Result:Implementation Code html <link href=...
What is Redis Cluster Redis cluster is a distribu...
Basic syntax You can create a view using the CREA...
Recently, a service has an alarm, which has made ...
How to uninstall MySQL database under Linux? The ...
Table of contents 1. Installation and introductio...
Table of contents 1. Install axios 2. Use of axio...
I have seen a lot of MySQL-related syntax recentl...
Preface: In MySQL, the CONCAT() function is used ...
1. Requirements: Database backup is particularly ...
Preface Programming languages usually contain v...