일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- element 조회
- 백준 파이썬
- sql injection
- burp suite
- 메소드
- 사칙연산
- 자바스크립트
- Pwndbg
- suninatas 풀이
- 포인터
- 김성엽 대표님
- htmlspecialchars
- python
- 조건문
- xss game 풀이
- xss game
- 파이썬
- 백준 알고리즘
- jQuery
- 함수
- window
- object
- github
- document
- IF문
- property
- 객체
- 배열
- blind sql injection
- lord of sql injection
Archives
- Today
- Total
목록oracle 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