Ustawianie wartości domyślnej dla typu danych boolean w SQL
create table mytable (
mybool boolean not null default 0
);
Dizzy Dolphin
create table mytable (
mybool boolean not null default 0
);