将0值插入Postgres:数字字段错误

时间:2020-03-23 03:16:40

标签: sql postgresql numeric

通过PHP在PostgreSQL的数字字段中插入“ 0”值时遇到问题。

insert into canalis_db.cor_cust_corp_fncl_rprt 
(corp_fncl_rprt_id,
customer_id,
rprt_period,
asset) values(  
                        'ca423557-7788-36e3-7788-d36f8c130a83',
                        'ca4160e2-0189-12b7-e6a6-635819ac9aa2',
                        '2020', 
                        0) 

它很好地显示错误消息。

Error: ERROR: syntax error at or near "0"
  Position: 395
SQLState:  42601
ErrorCode: 0

我的sql语法有什么错误吗?

0 个答案:

没有答案