Answers for "postgresql alter table add boolean column"

SQL
0

postgresql alter table add boolean column

ALTER TABLE users
  ADD COLUMN "priv_user" BOOLEAN NOT NULL DEFAULT FALSE;
Posted by: Guest on June-11-2021

Code answers related to "postgresql alter table add boolean column"

Code answers related to "SQL"

Browse Popular Code Answers by Language