Home > Database > SQL > body text

What is the command to insert records in sql

Release: 2019-07-22 10:22:41
Original
16104 people have browsed it

What is the command to insert records in sql

sql command to insert records is INSERT INTO.

Syntax 1:Add all fields

INSERT INTO table name VALUES (value 1, value 2,...)

to A simple student table example: students have two columns: name and age

What is the command to insert records in sql

Insert Zhang San’s information

INSERT INTO student VALUES ('Zhang San', 18)

What is the command to insert records in sql

Display the results, Zhang San is already in the data student table

What is the command to insert records in sql

Syntax 2: Specify columns to add(Columns that are not allowed to be empty must be given values, otherwise they cannot be inserted) INSERT INTO table_name (Column 1, Column 2,...) VALUES (Value 1, Value 2,....)

Insert information about John Doe

INSERT INTO student (NAME) VALUES ('John Doe')

What is the command to insert records in sql

Display student data, Zhang San and Li Si are both in the table

What is the command to insert records in sql

For more technical articles related to SQL, please visit SQL tutorial column to learn!

The above is the detailed content of What is the command to insert records in sql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!