Appearance
🎁Using Sail? Tell us your story and get free merch!
This is an unreleased version of Sail. Please visit here for the documentation of the latest stable version.
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| -- +-----+