我们在向 MySQL 中插入数据时是否可以跳过列?
如果你的第一列是 AUTO_INCREMENT,那么你可以跳过该列并放置 NULL 值。让我们先创建一个表 -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentFirstName varchar(100), StudentAge int ); Query OK, 0 rows affected (0.60 sec)
使用 insert 命令在表中插入一些记录。这里,我们跳过了第一列,因为它属于 AUTO_INCREMENT -
mysql> insert into DemoTable values(NULL,'Robert',21); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values(NULL,'Sam',22); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(NULL,'Bob',24); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(NULL,'Carol',20); Query OK, 1 row affected (0.14 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-----------+------------------+------------+ | StudentId | StudentFirstName | StudentAge | +-----------+------------------+------------+ | 1 | Robert | 21 | | 2 | Sam | 22 | | 3 | Bob | 24 | | 4 | Carol | 20 | +-----------+------------------+------------+ 4 rows in set (0.00 sec)
广告