Which data type is recommended to use for a field
that only stores a boolean
value (for example status of a user)?
In my case is as following:
...
disabled tinyint(1) DEFAULT '0' NOT NULL
...
Is there a performance difference between tinyint(1)
and int(11)
?