Answers for "postgres add column boolean"

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 "postgres add column boolean"

Code answers related to "SQL"

Browse Popular Code Answers by Language