아래와 같이 테이블 tbl이 있다고 가정하면
col
-----
a
ab
b
ba
select * from tbl where col between 'a' and 'b';
결과는 아래와 같다.
----