最佳答案
我在 postgreql 9.4数据库中定义了一个数组字段:
character varying(64)[]
我可以有一个空数组,例如{}作为该字段的默认值吗? 这样设置的语法是什么?
在设置方括号{}的情况下,我得到了以下错误:
SQL error:
ERROR: syntax error at or near "{"
LINE 1: ...public"."accounts" ALTER COLUMN "pwd_history" SET DEFAULT {}
^
In statement:
ALTER TABLE "public"."accounts" ALTER COLUMN "pwd_history" SET DEFAULT {}