- 앞에서 두 번째 글자가 'a'인 항목을 가져오고 싶을 때,
select First_name, Last_name from Employees where First_name like '_a%'; |
- 앞에서 세 번째 글자가 'b'인 항목을 가져오고 싶을 때,
select First_name, Last_name from Employees where First_name like '__b%'; |
- 필드 값이 null인 값을 가져올 때,
# not commission select First_name, Last_name from Employees where commission is null; |
- 필드 값이 null이 아닌 값을 가져올 때,
select First_name, Last_name from Employees where commission is not null; |
- ORDER BY 정렬
# Employee_id 순으로 오름차순 정렬 select Employee_id from Employees order by Employee_id Asc; |
# Employee_id 순으로 내림차순 정렬 select Employee_id from Employees order by Employee_id Desc; |
'DB > ORACLE' 카테고리의 다른 글
ORACLE - 문자함수(2), REPLACE, TRANSLATE, TRIM, ASCII, INSTR (0) | 2019.07.03 |
---|---|
ORACLE - 문자함수(1) CONCAT, INITCAP, LOWER, LPAD, RPAD, LTRIM, RTRIM, SUBSTR, SUBSTRB (0) | 2019.07.03 |
ORACLE - 숫자함수(abs, sign, round, ceil, floor, power, mod, sqrt) (0) | 2019.07.02 |
오라클 조회·검색 SELECT, WHERE 조건절, IN, LIKE, 별칭 AS (0) | 2019.06.25 |
오라클 버전 확인 (0) | 2019.06.25 |