Use SQL statement to determine whether the record already exists before insert

Use SQL statement to determine whether the record already exists before insert

Determine whether a record already exists before inserting a SQL statement

INSERT INTO test(A,B) select 'ab',2 
 WHERE NOT EXISTS (SELECT * FROM test WHERE A='ab');

Simple collection of judgments when inserting sql

When 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:
  • How to check if data exists before inserting in mysql
  • How to implement inserting a record when it does not exist and updating it if it exists in mysql
  • SQL insert into statement writing method explanation
  • MySQL Practical Experience of Using Insert Statement

<<:  The most comprehensive collection of front-end interview questions

>>:  How to draw a vertical line between two div tags in HTML

Recommend

An example of the difference between the id and name attributes in input

I have been making websites for a long time, but I...

Docker-compose tutorial installation and quick start

Table of contents 1. Introduction to Compose 2. C...

MySQL database table and database partitioning strategy

First, let's talk about why we need to divide...

Dynamic starry sky background implemented with CSS3

Result:Implementation Code html <link href=...

Example of how to quickly build a Redis cluster with Docker

What is Redis Cluster Redis cluster is a distribu...

How to create a view in MySQL

Basic syntax You can create a view using the CREA...

A detailed analysis and processing of MySQL alarms

Recently, a service has an alarm, which has made ...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...

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

Table of contents 1. Installation and introductio...

Vue3 (V) Details of integrating HTTP library axios

Table of contents 1. Install axios 2. Use of axio...

Summary of MySQL's commonly used concatenation statements

Preface: In MySQL, the CONCAT() function is used ...

Writing daily automatic backup of MySQL database using mysqldump in Centos7

1. Requirements: Database backup is particularly ...

Share some uncommon but useful JS techniques

Preface Programming languages ​​usually contain v...