Answers for "postgresql change column type boolean to varchar"

SQL
9

postgresql change column type

ALTER TABLE assets ALTER COLUMN name TYPE VARCHAR;
Posted by: Guest on May-26-2020
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 "postgresql change column type boolean to varchar"

Code answers related to "SQL"

Browse Popular Code Answers by Language