I’ve found it very weird that simple code like this is not valid:
select * from table where field=true
The alternative apparently being
select * from table where field='true'
Ok, guess I can live with that. For one reason or another I needed to do something like this recently:
select true as somefield,...
The alternative to get types and everything right was much more ugly though:
select cast('true' as bit) as somefield,...
Am I missing something? Is there actually some built in way to get a true or false value as a boolean without casting?
Sql Server doesn’t have a boolean datatype you can store in a table, but it does contain a bit data type you can store.
However, the
truekeyword you see IS a boolean value. Sql Server only uses the boolean data type for results for its Comparison Operators, which can return three values, TRUE, FALSE, and UNKNOWN.It is important to know the distinction between the two.
To store boolean values in a table, use the bit datatype. Use
1 for true,0 for false, andNull for unknown.