在 MySQL 中插入值时,我们可以跳过列名吗?
mysqlmysqli database
是的,我们可以这样做。让我们首先创建一个表 −
mysql> create table DemoTable -> ( -> StudentName varchar(100), -> StudentAge int -> ); Query OK, 0 rows affected (0.72 sec)
使用 insert 插入命令在表中插入一些记录 −
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)