DB
[Tibero] 티베로 date type 함수 더하기 빼기
오탄자
2022. 12. 14. 14:54
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