일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Pwndbg
- 함수
- 파이썬
- 배열
- property
- document
- 메소드
- object
- suninatas 풀이
- 자바스크립트
- xss game
- python
- 사칙연산
- 백준 알고리즘
- burp suite
- htmlspecialchars
- sql injection
- github
- 백준 파이썬
- 조건문
- element 조회
- 김성엽 대표님
- 객체
- xss game 풀이
- blind sql injection
- jQuery
- 포인터
- IF문
- lord of sql injection
- window
Archives
- Today
- Total
목록case와 decode (1)
power-girl0-0
[ Oracle DB ] case와 decode 예제 문제
문제 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)
언어/Database
2021. 3. 24. 13:04