Boolean Literals
Previous
Top
Next
The boolean literal values
True
and
False
must be represented without quotation marks. Uppercase and lowercase is ignored.
SELECT *
FROM transfers
WHERE (paid = True) AND NOT (incomplete = FALSE)