我们可以将MySQL保留字“index”用作列名吗?
可以,但你需要在保留字(index)上添加反引号符号,以避免在将其用作列名时出错。
首先让我们创建一个表 -
mysql> create table DemoTable ( `index` int ); Query OK, 0 rows affected (0.48 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable values(1000); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(1020); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(967); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(567); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(1010); Query OK, 1 row affected (0.18 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+-------+ | index | +-------+ | 1000 | | 1020 | | 967 | | 567 | | 1010 | +-------+ 5 rows in set (0.00 sec)
现在,让我们用我们的列名“index”显示一些记录。此处,我们显示 3 条记录 -
mysql> select *from DemoTable order by `index` DESC LIMIT 3;
这将产生以下输出 -
+-------+ | index | +-------+ | 1020 | | 1010 | | 1000 | +-------+ 3 rows in set (0.00 sec)
广告