PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Festlegen des Standardwerts für eine JSON-Spalte

Es ist genau wie jeder andere Standard, sobald Sie die json-Syntax korrigiert haben:

CREATE TABLE mytable (
    someothercol integer,
    somecol json DEFAULT '{"name": "", "other_name": ""}'
);

Wenn Sie auf DEFAULT setzen , es macht genau das:

regress=> INSERT INTO mytable(someothercol, somecol) VALUES (42, '{"nondefault": 1}');
INSERT 0 1
regress=> SELECT * FROM mytable;
 someothercol |      somecol      
--------------+-------------------
           42 | {"nondefault": 1}
(1 row)

regress=> UPDATE mytable SET somecol = DEFAULT WHERE someothercol = 42;
UPDATE 1
regress=> SELECT * FROM mytable;
 someothercol |            somecol             
--------------+--------------------------------
           42 | {"name": "", "other_name": ""}
(1 row)