Answers for "adding new column as boolean in 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

Code answers related to "adding new column as boolean in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language