Answers for "add new boolean column in postgresql"

SQL
0

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

how do you insert boolean to postgresql

PostgreSQL supports a single Boolean data type: BOOLEAN that can have three values: true , false and NULL . PostgreSQL uses one byte for storing a boolean value in the database. The BOOLEAN can be abbreviated as BOOL .
Posted by: Guest on January-21-2021

Code answers related to "add new boolean column in postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language