Answers for "alter table add boolean column postgres"

SQL
1

how to add boolean column in postgresql

ALTER TABLE users
  ADD COLUMN "priv_user" BOOLEAN DEFAULT FALSE;
Posted by: Guest on August-11-2021
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 "alter table add boolean column postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language