How can I add a column that doesn't allow nulls in a Postgresql database?

后端 未结 8 1866
我在风中等你
我在风中等你 2020-12-07 09:08

I\'m adding a new, \"NOT NULL\" column to my Postgresql database using the following query (sanitized for the Internet):

ALTER TABLE mytable ADD COLUMN mycol         


        
8条回答
  •  日久生厌
    2020-12-07 09:57

    You either need to define a default, or do what Sean says and add it without the null constraint until you've filled it in on the existing rows.

提交回复
热议问题