sql not
[MySQL] SQL (2) basic statement
SQL (2) SQL basic statement -2 하나의 statement마다 개행을 해주는 이유는, 수정사항을 반영하기 쉽기 때문이다. 특히 where절을 사용할 때 용이 where절 between 크기 비교 select ename, sal, deptno, job from emp where 1 = 1 and sal between 2450 and 3000; between x and y는 x와 y의 값까지 포함 하는 범위이다! 즉, select ename, sal, deptno, job from emp where 1 = 1 and sal>=2450 and sal 1000 order by sal asc, ename asc; 제일 아래 statement처럼 order by '정렬기준 컬럼' + '오름차순..