Advantages of INSERT INTO SET in MySQL

Advantages of INSERT INTO SET in MySQL

Insert data into mysql database. Previously commonly used

INSERT INTO table name (column name 1, column name 2…) VALUES (column value 1, column value 2);
If it is in a PHP program, it will be written as follows (adding products to the product library)
$sql = "INSERT INTO products (p_title,p_price.........) VALUES ('$p_title','$p_price'............)";
The disadvantage is that when the table has a lot of columns, it will be very messy.
  • 1. The front and back need to correspond, and it is easy to write the wrong order.
  • 2. Later changes (add columns, reduce columns) are made after the front part, which is scattered and easy to make mistakes.
  • 3. Difficulty in reading.
In fact, you can use
INSERT INTO table name SET column name 1 = column value 1, column name 2 = column value 2,...;
If it is in a PHP program, it will be written as follows (adding products to the product library):
$sql = " INSERT INTO products SET
            p_title = '$p_title',
               p_price = '$p_price',
            ...
   ";
This makes it clear and easy to check for errors.
And it has some common parts with the update statement, which makes it easier to reuse.
However, you cannot add data in batches using the INSERT INTO SET method. If you want to add data in batches, use this method (example)
$sql = "INSERT INTO products (p_title,p_price) VALUES ('apple','5 yuan'),('lychee','10 yuan'),('red dates','8 yuan')";

The above is the advantages of INSERT INTO SET in MySQL that I would like to introduce to you. I hope it will be helpful to you. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • php mysql insert into with detailed explanation and example code
  • Correct use of MySQL INSERT INTO statement
  • Example of using INSERT INTO statement to update multiple records in MySql
  • Analysis of the usage of Insert Into data insertion in PHP+MySQL
  • Insert into xxx on duplicate key update problem in Mysql

<<:  Docker installation of Nginx problems and error analysis

>>:  Essential knowledge for web development interviews and written tests (must read)

Recommend

Set the input to read-only via disabled and readonly

There are two ways to achieve read-only input: dis...

Building FastDFS file system in Docker (multi-image tutorial)

Table of contents About FastDFS 1. Search for ima...

Detailed explanation of JS array methods

Table of contents 1. The original array will be m...

How to move a red rectangle with the mouse in Linux character terminal

Everything is a file! UNIX has already said it. E...

Example code for using HTML ul and li tags to display images

Copy the following code to the code area of ​​Drea...

How to Change Colors and Themes in Vim on Linux

Vim is a text editor that we use very often in Li...

Detailed explanation of MYSQL database table structure optimization method

This article uses an example to illustrate the me...

Solve the problem that await does not work in forEach

1. Introduction A few days ago, I encountered a p...

Introduction to vim plugin installation under Linux system

Table of contents Install vim plugin manager Add ...

Node.js uses express-fileupload middleware to upload files

Table of contents Initialize the project Writing ...