有时候我们给表或者字段命名时,会无意中选择了一个SQL中的关键字进行命名,然后就报错了:
ERROR: syntax error at or near "limit"
MySQL解决方法:
在MySQL中需要添加 ``
create table `order` (id int, `limit` int); # 由于order和limit都是MySQL中的关键字,必须加上``才能使用
PostgreSQL解决方法:
在PostgreSQL中需要添加 ""
create table "order" (id int, "limit" int); # 由于order和limit都是PostgreSQL中的关键字,必须加上""才能使用