ex) (column) BETWEEN value1 AND value2
= (column) >= value1 AND <= value2
ex) (column) IN (value1, value2, ...)
ex) (column) NOT IN (value1, value2, ...)
ex) (column) LIKE (pattern)
% : equal to 0 or more string
[] : equal to a string
[^] : not equal to a string
_ : equal to a string that is in particular location
ex) (column) IS NULL
ex) (column) IS NOT NULL
ex) (condition1) AND (condition2)
ex) (condition1) OR (condition2)
ex) NOT (condition)