Answers for "Which MySQL data type to use for storing boolean values"

SQL
0

Which MySQL data type to use for storing boolean values

BOOL and BOOLEAN are synonyms of TINYINT(1). Zero is false, anything else is true. More information here.
Posted by: Guest on February-05-2022

Code answers related to "Which MySQL data type to use for storing boolean values"

Code answers related to "SQL"

Browse Popular Code Answers by Language