MySQL添加數(shù)據(jù)insert命令詳解

小億
78
2023-12-22 07:43:00
欄目: 云計(jì)算

MySQL的INSERT命令用于向數(shù)據(jù)庫(kù)表中插入新的數(shù)據(jù)。它的基本語(yǔ)法如下:

INSERT INTO table_name (column1, column2, ...)
VALUES (value1, value2, ...);

其中,table_name是要插入數(shù)據(jù)的表名,column1, column2, ...是要插入數(shù)據(jù)的列名,value1, value2, ...是對(duì)應(yīng)列的具體值。

以下是一些INSERT命令的具體用法:

  1. 插入具體值:
INSERT INTO students (name, age, grade) 
VALUES ('John', 18, 'A');

上述命令將在students表中插入一條新的記錄,包含name為’John’,age為18,grade為’A’的值。

  1. 插入查詢結(jié)果:
INSERT INTO students (name, age, grade) 
SELECT name, age, grade FROM other_students;

上述命令將從other_students表中選取name、agegrade列的值,并將其插入到students表中。

  1. 插入多條記錄:
INSERT INTO students (name, age, grade) 
VALUES ('John', 18, 'A'), ('Alice', 19, 'B'), ('Bob', 20, 'C');

上述命令將在students表中插入三條新的記錄,分別包含’John’、18、‘A’、‘Alice’、19、‘B’和’Bob’、20、'C’的值。

  1. 插入默認(rèn)值:
INSERT INTO students (name, age) 
VALUES ('John', DEFAULT);

上述命令將在students表中插入一條新的記錄,其中age列的值使用默認(rèn)值。

  1. 插入部分列的值:
INSERT INTO students (name, age) 
VALUES ('John', 18);

上述命令將在students表中插入一條新的記錄,只設(shè)置了nameage列的值,其他列的值將使用默認(rèn)值。

0