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.
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:
|
<<: Docker installation of Nginx problems and error analysis
>>: Essential knowledge for web development interviews and written tests (must read)
Table of contents Effect demonstration:Main JS co...
There are two ways to achieve read-only input: dis...
Table of contents About FastDFS 1. Search for ima...
Table of contents 1. The original array will be m...
The box model specifies the size of the element b...
Everything is a file! UNIX has already said it. E...
Copy the following code to the code area of Drea...
Vim is a text editor that we use very often in Li...
Please see the following screenshot I took from G...
This article uses an example to illustrate the me...
Today, my colleague encountered a very strange pr...
MySQL needs to be upgraded to version 5.5.3 or ab...
1. Introduction A few days ago, I encountered a p...
Table of contents Install vim plugin manager Add ...
Table of contents Initialize the project Writing ...