我们可以使用保留字“ index”作为MySQL列名吗?

是的,但是您需要在保留字(索引)上添加反引号,以避免在将其用作列名时出错。

让我们首先创建一个表-

create table DemoTable
(
   `index` int
);

使用插入命令在表中插入一些记录-

insert into DemoTable values(1000);
insert into DemoTable values(1020);
insert into DemoTable values(967);
insert into DemoTable values(567);
insert into DemoTable values(1010);

使用select语句显示表中的所有记录-

select *from DemoTable;

这将产生以下输出-

+-------+
| index |
+-------+
| 1000  |
| 1020  |
| 967   |
| 567   |
| 1010  |
+-------+
5 rows in set (0.00 sec)

现在,让我们用列名“ index”显示一些记录。在这里,我们显示3条记录-

select *from DemoTable order by `index` DESC LIMIT 3;

这将产生以下输出-

+-------+
| index |
+-------+
| 1020  |
| 1010  |
| 1000  |
+-------+
3 rows in set (0.00 sec)