Use the BIT
datatype to represent boolean data. A BIT
field's value is either 1,0 or NULL.
create table <tablename> (
<columnName> bit
)
Unless you want a threeway boolean you should add NOT NULL DEFAULT 0 like so:
create table <tablename> (
<columnName> bit not null default 0
)