MySQL setzte den Booleschen Standardwert
create table mytable (
mybool boolean not null default 0
);
Dizzy Dolphin
create table mytable (
mybool boolean not null default 0
);
create table mytable (
mybool boolean not null default 0
);
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
Married boolean DEFAULT false);