1. 현재 날짜 조회하기
2. 날자 포멧 변경하기
3. 날짜 함수 (Using Date Functions)
Assume SYSDATE ='25-JUL-03':
4. 날짜 포멧 모델 요소 (Elements of the Date Format Model)
출처 : 오라클 공인 교재 SQL Fundamentals 3-20~
select sysdate
from dual;
from dual;
2. 날자 포멧 변경하기
alter session set nls_date_format='YYY-MM-DD HH24:MI:SS';
3. 날짜 함수 (Using Date Functions)
Function | Result |
MONTHS_BETWWN('01-SEP-95','11-JAN-94') | 19.6774194 |
ADD_MONTHS('11-JAN-94',6) | '11-JUL-94 |
NEXT_DAY('01-SEP-95','FRIDAY') | '08-SEP-95' |
LAST_DAY('01-FEB-95') | '28-FEB-95' |
Assume SYSDATE ='25-JUL-03':
Function | Result |
ROUND(SYSDATE,'MONTH') | 01-AUG-03 |
ROUND(SYSDATE,'YEAR') | 01-JAN-04 |
TRUNC(SYSDATE,'MONTH') | 01-JUL-03 |
TRUNC(SYSDATE,'YEAR') | 01-JAN-03 |
4. 날짜 포멧 모델 요소 (Elements of the Date Format Model)
Function | Result |
HH24:MI:SS AM | 15:45:32 PM |
DD "of" MONTH | 12 of OCTOBER |
ddspth | fourteenth |
FMDD MONTH YYYY | 17 June 1987 |
출처 : 오라클 공인 교재 SQL Fundamentals 3-20~
'Computer Engineering > DB' 카테고리의 다른 글
오라클 (OCP)자격증 취득했는데 OCM될려면 어떻게해야하나요? (1) | 2008.07.21 |
---|---|
오라클 인스턴스가 떠 있는지 확인하는 명령어 (0) | 2008.07.20 |
oracle conditional expressions (case, decode) (0) | 2008.07.19 |
Oracle General Functions (0) | 2008.07.19 |
오라클 숫자를 문자로 출력하기 (Using the TO_CHAR Function with Numbers) (0) | 2008.07.18 |
오라클 숫자 함수 (oracle Number Functions) (0) | 2008.07.18 |
오라클 캐릭터 조작 함수 (Oracle Character-Manipulation Functions) (0) | 2008.07.18 |
오라클 sql 쿼리 임시 변수 사용하기, UNDEFINE (Using the &, && Subsitiution Variable) (0) | 2008.07.18 |
오라클 sql 조건 비교 (Comparison Conditions ) (0) | 2008.07.18 |
오라클 quote 연산자 (oracle Alternative quote (q) Operator ) (0) | 2008.07.18 |