Answers for "postgresql change column type to boolean"

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
0

alter boolean column postgresql

ALTER TABLE stock_availability 
ALTER COLUMN available
SET DEFAULT FALSE;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on November-02-2021

Code answers related to "postgresql change column type to boolean"

Code answers related to "SQL"

Browse Popular Code Answers by Language