how to add boolean column in postgresql
ALTER TABLE users
ADD COLUMN "priv_user" BOOLEAN DEFAULT FALSE;
how to add boolean column in postgresql
ALTER TABLE users
ADD COLUMN "priv_user" BOOLEAN DEFAULT FALSE;
postgresql alter table add boolean column
ALTER TABLE users
ADD COLUMN "priv_user" BOOLEAN NOT NULL DEFAULT FALSE;
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 .
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us