Appearance
🎁Using Sail? Tell us your story and get free merch!
A boolean literal specifies a boolean truth value.
TRUE|FALSE
The boolean literals are case-insensitive.
SELECT TRUE AS col; -- +----+ -- | col| -- +----+ -- |true| -- +----+ SELECT FALSE AS col; -- +-----+ -- | col| -- +-----+ -- |false| -- +-----+