我在postgresql 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 {}
您需要使用显式数组初始化程序并将其转换为正确的类型:
原文链接:https://www.f2er.com/postgresql/192964.htmlALTER TABLE public.accounts ALTER COLUMN pwd_history SET DEFAULT array[]::varchar[];