空数组作为PostgreSQL数组列的默认值

前端之家收集整理的这篇文章主要介绍了空数组作为PostgreSQL数组列的默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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 {}
您需要使用显式数组初始化程序并将其转换为正确的类型:
ALTER TABLE public.accounts 
    ALTER COLUMN pwd_history SET DEFAULT array[]::varchar[];
原文链接:https://www.f2er.com/postgresql/192964.html

猜你在找的Postgre SQL相关文章