I am transitioning from SQL Server to MySQL 5.1 and seem to be tripped up trying to create a table using a select statement so that the column is a bit.
Ideally the
Try using case:
CREATE TABLE myNewTable AS SELECT (case myIntThatIsZeroOrOne when 1 then true else false end) AS myBit FROM myOldtable