有时候我们给表或者字段命名时,会无意中选择了一个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中的关键字,必须加上""才能使用
但是,命名表或者字段等时,最好考虑使用非保留名称
原文地址:https://www.cnblogs.com/ryanzheng/p/9350259.html
时间: 2024-10-28 16:32:27