Is there a Boolean data type in Microsoft SQL Server like there is in MySQL?
Posted By: Anonymous
Is there a Boolean data type in Microsoft SQL Server like there is in MySQL?
If so, what is the alternative in MS SQL Server?
Solution
You could use the BIT
datatype to represent boolean data. A BIT
field’s value is either 1, 0, or null.
Answered By: Anonymous
Disclaimer: This content is shared under creative common license cc-by-sa 3.0. It is generated from StackExchange Website Network.