Is there a Boolean data type in Microsoft SQL Server like there is in MySQL? [duplicate]

You could use the BIT datatype to represent boolean data. A BIT field’s value is either 1, 0, or null.

Leave a Comment