1. 程式人生 > >mysql 中 ``反引號的作用

mysql 中 ``反引號的作用

反引號`,數字1左邊的符號。

保留字不能用於表名,比如desc,此時需要加入反引號來區別,但使用表名時可忽略反引號。

create table desc報錯

create table `desc`成功

create table `test`成功

drop table test成功

保留字不能用於欄位名,比如desc,此時也需要加入反引號,並且insert等使用時也要加上反引號。

create table `test`(`desc` varchar(255))成功

insert into test(desc) values('fxf')失敗

insert into test(`desc`) values('fxf')成功