溫馨提示×

數(shù)據(jù)庫如何添加多行數(shù)據(jù)

小億
250
2024-05-13 18:31:17

在數(shù)據(jù)庫中添加多行數(shù)據(jù)通常需要使用INSERT INTO語句。語法如下:

INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3),
       (value4, value5, value6),
       (value7, value8, value9),
       ...

其中,table_name是要插入數(shù)據(jù)的表名,column1、column2等是要插入數(shù)據(jù)的列名,value1、value2等是要插入的數(shù)據(jù)值。

例如,如果要向名為students的表中添加三行數(shù)據(jù),可以使用如下語句:

INSERT INTO students (name, age, gender)
VALUES ('Alice', 20, 'F'),
       ('Bob', 22, 'M'),
       ('Charlie', 21, 'M');

0