Detailed explanation of MySQL database addition, deletion and modification operations

Detailed explanation of MySQL database addition, deletion and modification operations

Inserting Data

insert into table name (column name 1, column name 2, column name 3) values ​​(value 1, value 2, value 3);

insert into user(user_id,name,age) values(1,'nice',24);

The simple way to write it is to omit the field name, but all fields must be inserted.

Batch Insert

Efficiency issues of single and batch insertion

The efficiency of inserting multiple records in MySQL is greater than that of inserting a single record.

Deleting Records

delete from table name [where condition]

If no conditions are specified, all data in the table will be deleted one by one.

What is the difference between delete and truncate?

delete: belongs to DML, deletes data in the table one by one

truncate: belongs to DDL, delete the table first and then rebuild it

Which one is more efficient in deleting data, delete or truncate?

If the data is small, delete is more efficient

If the amount of data is large, truncate is more efficient

Update Record

update table name set column name = column value, column name 2 = column 2 value [where condition]

Modify multi-field data

Modify all (use with caution)

The above is a detailed explanation and integration of the MySQL database addition, deletion and modification operations introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to solve the problem of case insensitivity in MySQL queries
  • MySQL optimization strategy (recommended)
  • Detailed explanation of how MySQL solves phantom reads
  • Detailed explanation of the 10061 unknown error when using Navicat to connect to a remote Linux MySQL database
  • How to add index to mysql using shell script
  • MySQL character set garbled characters and solutions
  • MySQL starts slow SQL and analyzes the causes
  • Will MySQL execute the update statement again if it has the same data as the original one?
  • Reasons and solutions for slow MySQL query stuck in sending data
  • What should I do if I want to cancel an incorrect MySQL command?

<<:  Implementation of Nginx configuration of multi-port and multi-domain name access

>>:  Implementing access control and connection restriction based on Nginx

Recommend

Example code for implementing complex table headers in html table

Use HTML to create complex tables. Complex tables...

MySQL series 15 MySQL common configuration and performance stress test

1. Common MySQL configuration All the following c...

How to migrate the data directory in mysql8.0.20

The default storage directory of mysql is /var/li...

Solution to the problem of repeated triggering of functions in Vue project watch

Table of contents Problem description: Solution 1...

HTML implements a fixed floating semi-transparent search box on mobile

Question. In the mobile shopping mall system, we ...

A brief discussion on whether CSS animation will be blocked by JS

The animation part of CSS will be blocked by JS, ...

JavaScript implements random generation of verification code and verification

This article shares the specific code of JavaScri...

How to use MySQL stress testing tools

1. MySQL's own stress testing tool - Mysqlsla...

How to directly reference vue and element-ui in html

The code looks like this: <!DOCTYPE html> &...

Pure CSS to modify the browser scrollbar style example

Use CSS to modify the browser scroll bar style ::...

Eclipse configures Tomcat and Tomcat has invalid port solution

Table of contents 1. Eclipse configures Tomcat 2....

Conflict resolution when marquee and flash coexist in a page

The main symptom of the conflict is that the FLASH...

WeChat applet implements calculator function

WeChat Mini Programs are becoming more and more p...