如何在只有一个自动增量列的表中插入一行?
您可以轻松地将行插入到只有一个自动递增列的表中。语法如下-
insert into yourTableName set yourColumnName =NULL;
您可以使用以下语法-
insert into yourTableName values(NULL);
为了理解上述语法,让我们创建一个表。创建表的查询如下-
mysql> create table singleAutoIncrementColumnDemo -> ( -> UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY -> );
使用insert命令在表中插入一些记录。查询如下-
mysql> insert into singleAutoIncrementColumnDemo set UserId =NULL; mysql> insert into singleAutoIncrementColumnDemo values(NULL);
使用select语句显示表中的所有记录。查询如下-
mysql> select *from singleAutoIncrementColumnDemo;
这是输出-
+--------+ | UserId | +--------+ | 1 | | 2 | +--------+ 2 rows in set (0.00 sec)
热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短