tibero date 날짜 계산하기
- to_date
- to_char
- last_day
- interval
- sysdate
to_date
문자열을 날짜로 변환하는 함수이다.
select to_date('2022-12-15', 'yyyy-mm-dd') as currentDate from tableName;
to_char
날짜를 문자열로 변환하는 함수이다.
select to_char(date colume, 'yyyy-mm'dd') as currentDate from tableName;
last_day
날짜데이터의 마지막 일의 값으로 변환하는 함수이다.
ex) 2022/09/05 > 2022/09/30
select last_day(date column) from tableName;
interval
날짜를 더하고 뺄 수 있는 함수이다.
select [date column] [date column] + interval '2' day as intervalDate from tableName;
ex ) 2022/12/14 | 2022/12/16
select [date column] [date column] + interval '2' month as intervalDate from tableName;
ex ) 2022/12/14 | 2023/02/14
select [date column] [date column] + interval '2' year as intervalDate from tableName;
ex ) 2022/12/14 | 2024/12/14
'DB' 카테고리의 다른 글
dbeaver tibero 티베로 jdbc 연결 (0) | 2022.12.04 |
---|---|
데이터베이스 무료 툴 dbeaver 무료 다운로드 설치 방법 사용법 (0) | 2022.12.03 |
[Tibero studio] 티베로 스튜디오 사용법 단축키 모음 (0) | 2022.12.02 |
오라클 티베로 OR절 속도 느린 이유 인덱스 안타기 때문에 풀스캔 (0) | 2022.11.29 |
[Oracle] 오라클 DB LINK 설정하는 방법 tnsnames.ora과 명령어 설정 (0) | 2021.04.13 |