Alter Table Add Column Boolean

[Solved] Alter Table Add Column Boolean | Sql - Code Explorer | yomemimo.com
Question : alter table add column boolean

Answered by : quaint-quail-4g60ybk6l35r

ALTER TABLE "table_name"
ADD COLUMN column_name BOOLEAN default FALSE;

Source : | Last Update : Thu, 05 May 22

Question : add bool column in sql

Answered by : zealous-zebra-t2sguwvd4ld5

ALTER TABLE person add [AdminApproved] BIT default 'FALSE';

Source : https://stackoverflow.com/questions/40244152/how-to-add-a-boolean-datatype-column-to-an-existing-table-in-sql | Last Update : Sat, 23 May 20

Answers related to alter table add column boolean

Code Explorer Popular Question For Sql