TurboSQL Guide Boolean Literals |
Previous Top Next |
The Boolean literal values True and False can be written with or without single quotes. Uppercase and lowercase is ignored.
SELECT *
FROM transfers
WHERE (paid = 'True') AND NOT (incomplete = FALSE)