Festlegen des Standardwerts für den Booleschen Datentyp in SQL
create table mytable (
mybool boolean not null default 0
);
Dizzy Dolphin
create table mytable (
mybool boolean not null default 0
);