텍스트형을 숫자형으로 변경후에 검색하는 방법
select * from 테이블 where 1 and text_title<='10'
text_title text(문자형) 필드인경우
1<10<2 이런식으로 등호로 적용된다
그러기 때문에 1<2<10 이렇게 하기위해서는 숫자형태로 바꿔야 한다
select * from 테이블 where 1 and cast(text_title as unsigned)<='10'
이렇게 변경하면된다
cast type의 종류는
binary
char
signed (부호있는 숫자)
date
datetime
time
unsigned (부호없는 숫자)