특정값 이상,특정값 이하인 조건
select * from sample where 20<=test_column and test_column<=30
between
select * from sample where test_column between 20 and 30