我们可以使用保留字“ 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)
热门推荐
10 新人红包祝福语简短精辟
11 幼师给毕业祝福语简短
12 生日高考祝福语妹妹简短
13 下飞机祝福语简短英文
14 元宵发客户祝福语简短
15 爸妈金婚文案祝福语简短
16 新郎朋友红包祝福语简短
17 虎年五一祝福语大全简短
18 出阁宴祝福语姐姐简短