null이 아닌 열이있는 테이블이 있습니다.이 열에 null 값을 기본값으로 설정하는 방법은 무엇입니까?
내 말은, 다음과 같이하고 싶습니다.
postgres=# ALTER TABLE person ALTER COLUMN phone SET NULL;
그러나 그것은 보여줍니다 :
postgres=# ALTER TABLE person ALTER COLUMN phone SET NULL;
ERROR: syntax error at or near "NULL"
LINE 1: ALTER TABLE person ALTER COLUMN phone SET NULL;