How to create a column with boolean values

The most straight forward way to create a column with boolean values (i.e. TRUE/FALSE) is to use the true() and false() functions.

Alternatively, constant conditions would work too. For instance:

1 = 1 // TRUE
1 = 0 // FALSE

Here is an example.
create-booleans.morph (1.9 KB)