我们可以在CREATE TABLE语句中使用“何时”作为列名吗?
在开始之前,让我们尝试使用CREATETABLE语句将“when”设置为列名-
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`。让我们首先创建一个表并实现它:
create table DemoTable693 ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100), `When` datetime );
使用insert命令在表中插入一些记录:
insert into DemoTable693(StudentName,`When`) values('Chris',NOW());
insert into DemoTable693(StudentName,`When`) values('Robert',CURDATE());使用select语句显示表中的所有记录-
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)
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短