일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백준 알고리즘
- lord of sql injection
- property
- 파이썬
- IF문
- jQuery
- xss game 풀이
- 사칙연산
- 백준 파이썬
- github
- 조건문
- window
- suninatas 풀이
- object
- htmlspecialchars
- 메소드
- 객체
- document
- sql injection
- 자바스크립트
- 김성엽 대표님
- 포인터
- Pwndbg
- blind sql injection
- python
- element 조회
- 함수
- burp suite
- xss game
- 배열
Archives
- Today
- Total
power-girl0-0
[ Oracle DB ] case와 decode 예제 문제 본문
728x90
문제 1. sal + sal * comm이 1000000이상이면, 'good' 5000 이상이면, 'average', 1이상 5000미만이면 'bad'
0이면 no good 로 평가하고 empno, ename, sal, comm, sal+sal*comm,평가를 출력해라.
select empno,ename, sal,sal,comm, sal+sal*nvl(comm,0) as 지급금액,
case
when sal+sal*nvl(comm,0)>=1000000 then 'good'
when (sal+sal*nvl(comm,0)>=5000) then 'average'
when sal+sal*nvl(comm,0)>=1 and
sal+sal*nvl(comm,0)<5000 --같은 구문 sal+sal*nvl(comm,0) between 1 and 5000 then
then 'bad'
when sal+sal*nvl(comm,0)=0 then 'no good'
end as 평가
from emp;
문제 2. 매니저가 없는 사원만 매니저 번호에 'not exists'가 찍히도록 empno,ename,mgr을 출력해라
select empno,ename, decode(mgr, null, 'not exist',mgr) from emp;
728x90
'언어 > Database' 카테고리의 다른 글
[ Oracle DB ] Subquery (0) | 2021.04.07 |
---|---|
[ Oracle DB ] 집계함수 (0) | 2021.03.24 |
[ Oracle DB ] 함수 |내장함수 | 집계함수 | 단일행 함수 | 변환함수 | 사용자 정의 (1) | 2021.03.24 |
[ Oracle DB ] scott 스키마 설치 | 제약 조건 설정 | 제약조건 스키마 | 제약 조건 확인 (1) | 2021.03.24 |
[ Oracle DB ] 사용자 정보 확인 | 오늘 날짜 확인 | 환경 변수 확인 및 변경 | 시스템 뷰 (1) | 2021.03.24 |
Comments