Which MySQL Data Type To Use For Storing Boolean Values?
In this tutorial, we will find Which MySQL Data Type To Use For Storing Boolean Values MySQL does not have any such kind of data type as Boolean but we make int as TINYINT to store only two values that are zero or one where zero means false and one means true. DataTypes In MySQL … Read more