我们能在 MySQL 中插入值时跳过一个列名吗?
是的,我们可以这么做。我们首先创建一个表 -
mysql> create table DemoTable -> ( -> StudentName varchar(100), -> StudentAge int -> ); Query OK, 0 rows affected (0.72 sec)
在表中使用插入命令插入一些记录 -
mysql> insert into DemoTable(StudentAge) values(23); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable(StudentName) values('John'); Query OK, 1 row affected (0.21 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable;
这将产生以下输出。NULL 将插入为跳过的列值 -
+-------------+------------+ | StudentName | StudentAge | +-------------+------------+ | NULL | 23 | | John | NULL | +-------------+------------+ 2 rows in set (0.00 sec)
广告