开始之前,让我们尝试在使用 CREATE TABLE 语句时将“when”设置为列名 -
mysql> create table DemoTable693( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100), When datetime );
这将产生以下输出。将出现错误:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'When datetime at line 5
您需要使用反引号将保留字括起来,例如“when”。让我们首先创建一个表并实现相同的:
mysql> create table DemoTable693 ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100), `When` datetime ); Query OK, 0 rows affected (0.63 sec)
使用插入命令在表中插入一些记录:
mysql> insert into DemoTable693(StudentName,`When`) values('Chris',NOW()); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable693(StudentName,`When`) values('Robert',CURDATE()); Query OK, 1 row affected (0.22 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable693;
这将产生以下输出 -
+-----------+-------------+---------------------+ | StudentId | StudentName | When | +-----------+-------------+---------------------+ | 1 | Chris | 2019-07-21 18:57:19 | | 2 | Robert | 2019-07-21 00:00:00 | +-----------+-------------+---------------------+ 2 rows in set (0.00 sec)
以上就是我们可以在 CREATE TABLE 语句中使用“When”作为列名吗?的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号