SELECT * FROM my_table WHERE my_col BETWEEN 10 AND 20; -- equivalent to SELECT * FROM my_table WHERE my_col >= 10 AND my_col <= 20;