> Original message text:
> From:
> Bacuc - 26/06 - 18:23:38
> Subject:Boolean & MySQL
> -----------------
> Где в MySQL логический тип? Или указывать поле как тип INT?
>
From:
Dinky - 28/06 - 21:04:32
Subject:RTFM
----------------- http://dev.mysql.com/doc/mysql/en/Numeric_type_overview.html
BIT=BOOL=BOOLEAN
These are synonyms for TINYINT(1). The BOOLEAN synonym was added in MySQL 4.1.0. A value of zero is considered false. Non-zero values are considered true. In the future, full boolean type handling will be introduced in accordance with standard SQL.
=========