Mengatur nilai default untuk tipe data boolean di SQL
create table mytable (
mybool boolean not null default 0
);
Dizzy Dolphin
create table mytable (
mybool boolean not null default 0
);