[점수table]
no jumsu
1 60
2 70
3 65
4 80
[점수등급]
st1 st2 class
90 99 수
80 89 우
70 79 미
60 69 양
출력결과
no jumsu classs
1 60 양
2 70 미
3 65 양
4 80 우
한문장으로 처리할려구 하니까 어렵네요
left join 해서 안되니까
프르그램에서 loop 돌리면서 결과값으로 보여주는데
속도가 느려서요
한문장으로 처리할수 있는 방법 알고싶어서요
select a.no ,a.jumsu ,b.class from 점수테이블 a left outer join 점수등급 b On a.jumsu Between b.st1 and b.st2