@ depno 가 10인 자료 출력
SQL> select empno, ename
2 from emp
3 where deptno = 10;
@ 이름 찾기
SQL> select *
2 from emp
3 where ename= 'SMITH';
//값은 대문자와 소문자를 구분한다.
@ comm이 없는 사람만 출력
SQL> select empno, ename, comm
2 from emp
3 where comm is null;
@ 연봉 출력
SQL> select empno, ename, sal, comm, sal*12+comm
2 from emp;
반응형
'2019 > ORACLE' 카테고리의 다른 글
SQL 논리연산자 (LIKE) (2) | 2019.11.14 |
---|---|
SQL distinct (중복제거) (0) | 2019.11.14 |
SQL 논리연산자 (BETWEEN , OR, IN) (0) | 2019.11.14 |
SQL 비교연산자 (0) | 2019.11.14 |
SQL 별칭 부여하기 (0) | 2019.11.14 |