본문 바로가기
정보관리(데이터베이스, DB)/PostgreSQL(포스트그레 에스큐엘)

PostgreSQL 기초 날짜및 시간관련

by 3604 2024. 9. 18.
728x90

출처: https://blog.naver.com/dev4unet/220602540023

 
SQL 문은 돌아서면 잊어버리다 보니 가끔씩 사용하는 내용 중 나중에 참고할 만한 내용들을 따로 정리해 놓습니다.
나중에 시간이 되면 수정하거나 가끔씩 정리할 예정지만 제 분야가 아니라 문의는 사절이 예용~~*^^*

 

 

1. 들어가며..

postgreSQL의 경우 몰라서 못 쓸 정도로 날짜 및 시간 관련한 기능들이 상당히 많습니다.^^;;;

전부 다루는 건 무의미하며 저도 잘 모르기 때문에 제가 최근에 사용한 함수들을 먼저 정리하고

나중에 다른 기능을 사용하게 되면 그때그때 별도로 올리거나 이 글을 수정하거나 하겠습니다.

최근에는 제가 통계 등 SQL 작업을 할 일이 거의 없어서 날짜 등의 기능을 거의 사용하지 않습니다^^;;

 

 

2. 자주 사용될 함수 들..

다양한 기능 중 저는 아래 함수들을 많이 사용하지 않을까 싶군요.

date_part(), extract(), epoch, to_char(), to_date(), ...

PostgreSQL에 상세하게 설명되어 있으니 위 함수를 비롯한 다양한 내용은 참고 자료의 문서를 참조하시기 바랍니다.

 

 

3. 날짜 및 시간 관련 연산 기능

PostgreSQL의 경우 아래와 같은 다양한 연산 기능을 제공합니다.

Table 9-27. Date/Time Operators

OperatorExampleResult

+ date '2001-09-28' + integer '7' date '2001-10-05'
+ date '2001-09-28' + interval '1 hour' timestamp '2001-09-28 01:00:00'
+ date '2001-09-28' + time '03:00' timestamp '2001-09-28 03:00:00'
+ interval '1 day' + interval '1 hour' interval '1 day 01:00:00'
+ timestamp '2001-09-28 01:00' + interval '23 hours' timestamp '2001-09-29 00:00:00'
+ time '01:00' + interval '3 hours' time '04:00:00'
- - interval '23 hours' interval '-23:00:00'
- date '2001-10-01' - date '2001-09-28' integer '3' (days)
- date '2001-10-01' - integer '7' date '2001-09-24'
- date '2001-09-28' - interval '1 hour' timestamp '2001-09-27 23:00:00'
- time '05:00' - time '03:00' interval '02:00:00'
- time '05:00' - interval '2 hours' time '03:00:00'
- timestamp '2001-09-28 23:00' - interval '23 hours' timestamp '2001-09-28 00:00:00'
- interval '1 day' - interval '1 hour' interval '1 day -01:00:00'
- timestamp '2001-09-29 03:00' - timestamp '2001-09-27 12:00' interval '1 day 15:00:00'
* 900 * interval '1 second' interval '00:15:00'
* 21 * interval '1 day' interval '21 days'
* double precision '3.5' * interval '1 hour' interval '03:30:00'
/ interval '1 hour' / double precision '1.5' interval '00:40:00'

예를 들어, 위 표의 밑에서 4번째인 "select 900 * interval '1 second'"을 실행하면 '00:15:00'이 실행 결과로 나옵니다.

즉, 900을 시간 간격인 interval로 해서 '1'초 단위로 계산한 결과 15분이 됩니다.

'2 second'로하면 2초 간격으로 계산하면 30분이 되겠죠^^

 

날짜 형태의 연산에서 일반 숫자는 Day라고 생각하시면 됩니다.

즉, 오늘은 "Select now()" , 내일은 "Select now()::date + 1", 어제는 "Select now()::date - 1" 입니다.^^

참고로, 단순 숫자 연산은 Date형에서만 가능하므로 now()를 이용할 경우 강제로 date 형태의 날짜로 변환해야 합니다.

 

위 표의 첫 번째에 나온 것처럼 date형의 경우에는 직접 연산이 가능합니다.

select date '2016-01-19' + integer '1'            ==> 2016-01-20

select date '2016-01-19' + 1                      ==> 2016-01-20

 

시간 간격인 interval을 이용해서도 가능합니다.

결과를 확인하기 쉽게 현재 시각을 기준으로 어제/오늘/내일의 일시를 출력하려면 다음과 같습니다.

Select now() - interval '1 day', now(), now() + interval '1 day'

[결과]

'2016-01-18 12:47:10.515484+09' '2016-01-19 12:47:10.515484+09' '2016-01-20 12:47:10.515484+09'

 

interval을 이용하면 하루 단위 외에도 시간이나 월등 다양한 연산을 편하게 할 수 있습니다.

자세한 내용은 문서를 참고하시기 바랍니다.

 

 

4. 날짜 및 시간 관련 포멧팅

아마 날짜의 기본 연산 외에 가장 많이 사용되는 건 원하는 형태로 출력하거나 추출하는 포멧팅일거라 봅니다.^^

날짜나 시간과 관련된 웬만한 곳에서는 거의 사용됩니다.

PostgreSQL 문서가 워낙 자세하니 문서를 보고 몇 번 실습해보면 충분하리라 봅니다.(모르는 건 떠 넘기기~*^^*)

 

Table 9-21. Template Patterns for Date/Time Formatting

PatternDescription

HH hour of day (01-12)
HH12 hour of day (01-12)
HH24 hour of day (00-23)
MI minute (00-59)
SS second (00-59)
MS millisecond (000-999)
US microsecond (000000-999999)
SSSS seconds past midnight (0-86399)
AM or A.M. or PM or P.M. meridian indicator (uppercase)
am or a.m. or pm or p.m. meridian indicator (lowercase)
Y,YYY year (4 and more digits) with comma
YYYY year (4 and more digits)
YYY last 3 digits of year
YY last 2 digits of year
Y last digit of year
IYYY ISO year (4 and more digits)
IYY last 3 digits of ISO year
IY last 2 digits of ISO year
I last digits of ISO year
BC or B.C. or AD or A.D. era indicator (uppercase)
bc or b.c. or ad or a.d. era indicator (lowercase)
MONTH full uppercase month name (blank-padded to 9 chars)
Month full mixed-case month name (blank-padded to 9 chars)
month full lowercase month name (blank-padded to 9 chars)
MON abbreviated uppercase month name (3 chars in English, localized lengths vary)
Mon abbreviated mixed-case month name (3 chars in English, localized lengths vary)
mon abbreviated lowercase month name (3 chars in English, localized lengths vary)
MM month number (01-12)
DAY full uppercase day name (blank-padded to 9 chars)
Day full mixed-case day name (blank-padded to 9 chars)
day full lowercase day name (blank-padded to 9 chars)
DY abbreviated uppercase day name (3 chars in English, localized lengths vary)
Dy abbreviated mixed-case day name (3 chars in English, localized lengths vary)
dy abbreviated lowercase day name (3 chars in English, localized lengths vary)
DDD day of year (001-366)
DD day of month (01-31)
D day of week (1-7; Sunday is 1)
W week of month (1-5) (The first week starts on the first day of the month.)
WW week number of year (1-53) (The first week starts on the first day of the year.)
IW ISO week number of year (The first Thursday of the new year is in week 1.)
CC century (2 digits) (The twenty-first century starts on 2001-01-01.)
J Julian Day (days since January 1, 4712 BC)
Q quarter
RM month in Roman numerals (I-XII; I=January) (uppercase)
rm month in Roman numerals (i-xii; i=January) (lowercase)
TZ time-zone name (uppercase)
tz time-zone name (lowercase)

Certain modifiers may be applied to any template pattern to alter its behavior. For example, FMMonth is the Month pattern with the FM modifier. Table 9-22 shows the modifier patterns for date/time formatting.

 

제가 주로 사용하는 포맷 문자열에는 빨간색을...

그리고 통계 등 특정 요구에 자주 사용될 것 같은 건 파란색으로 칠해 봤습니다.^^

 

[예시]

'20160119'을 'YYYYMMDD' 형식으로 인식해서 date 타입으로 변환하기

select to_date('20160119', 'YYYYMMDD')            ==> 2016-01-19

 

'2016-01-19'을 'YYYY-MM-DD' 형식으로 인식해서 date 타입으로 변환하기

select to_date('2016-01-19', 'YYYY-MM-DD')       ==> 2016-01-19

 

to_char()나 to_date()의 세부 내용은 참고 자료의 PostgreSQL 문서에 자세히 나와있으니 생략..

 

 

Table 9-22. Template Pattern Modifiers for Date/Time Formatting

ModifierDescriptionExample
FM prefix fill mode (suppress padding blanks and zeroes) FMMonth
TH suffix uppercase ordinal number suffix DDTH
th suffix lowercase ordinal number suffix DDth
FX prefix fixed format global option (see usage notes) FX Month DD Day
TM prefix translation mode (print localized day and month names based on lc_messages) TMMonth
SP suffix spell mode (not yet implemented) DDSP

Usage notes for date/time formatting:

  • FM suppresses leading zeroes and trailing blanks that would otherwise be added to make the output of a pattern be fixed-width.
  • TM does not include trailing blanks.
  • to_timestamp and to_date skip multiple blank spaces in the input string if the FX option is not used. FX must be specified as the first item in the template. For example to_timestamp('2000    JUN', 'YYYY MON') is correct, but to_timestamp('2000    JUN', 'FXYYYY MON') returns an error, because to_timestamp expects one space only.
  • Ordinary text is allowed in to_char templates and will be output literally. You can put a substring in double quotes to force it to be interpreted as literal text even if it contains pattern key words. For example, in '"Hello Year "YYYY', the YYYY will be replaced by the year data, but the single Y in Year will not be.
  • If you want to have a double quote in the output you must precede it with a backslash, for example E'\\"YYYY Month\\"'. (Two backslashes are necessary because the backslash already has a special meaning when using the escape string syntax.)
  • The YYYY conversion from string to timestamp or date has a restriction if you use a year with more than 4 digits. You must use some non-digit character or template after YYYY, otherwise the year is always interpreted as 4 digits. For example (with the year 20000):to_date('200001131', 'YYYYMMDD') will be interpreted as a 4-digit year; instead use a non-digit separator after the year, like to_date('20000-1131', 'YYYY-MMDD') or to_date('20000Nov31', 'YYYYMonDD').
  • In conversions from string to timestamp or date, the CC field is ignored if there is a YYY, YYYY or Y,YYY field. If CC is used with YY or Y then the year is computed as (CC-1)*100+YY.
  • Millisecond (MS) and microsecond (US) values in a conversion from string to timestamp are used as part of the seconds after the decimal point. For example to_timestamp('12:3', 'SS:MS') is not 3 milliseconds, but 300, because the conversion counts it as 12 + 0.3 seconds. This means for the format SS:MS, the input values 12:3, 12:30, and 12:300 specify the same number of milliseconds. To get three milliseconds, one must use 12:003, which the conversion counts as 12 + 0.003 = 12.003 seconds.
  • Here is a more complex example: to_timestamp('15:12:02.020.001230', 'HH:MI:SS.MS.US') is 15 hours, 12 minutes, and 2 seconds + 20 milliseconds + 1230 microseconds = 2.021230 seconds.
  • to_char's day of the week numbering (see the 'D' formatting pattern) is different from that of the extract function.
  • to_char(interval) formats HH and HH12 as hours in a single day, while HH24 can output hours exceeding a single day, e.g. >24.

Table 9-23 shows the template patterns available for formatting numeric values.

Table 9-23. Template Patterns for Numeric Formatting

PatternDescription
9 value with the specified number of digits
0 value with leading zeros
. (period) decimal point
, (comma) group (thousand) separator
PR negative value in angle brackets
S sign anchored to number (uses locale)
L currency symbol (uses locale)
D decimal point (uses locale)
G group separator (uses locale)
MI minus sign in specified position (if number < 0)
PL plus sign in specified position (if number > 0)
SG plus/minus sign in specified position
RN roman numeral (input between 1 and 3999)
TH or th ordinal number suffix
V shift specified number of digits (see notes)
EEEE scientific notation (not implemented yet)

Usage notes for numeric formatting:

  • A sign formatted using SG, PL, or MI is not anchored to the number; for example, to_char(-12, 'S9999') produces '  -12', but to_char(-12, 'MI9999') produces '-  12'. The Oracle implementation does not allow the use of MI ahead of 9, but rather requires that 9 precede MI.
  • 9 results in a value with the same number of digits as there are 9s. If a digit is not available it outputs a space.
  • TH does not convert values less than zero and does not convert fractional numbers.
  • PL, SG, and TH are PostgreSQL extensions.
  • V effectively multiplies the input values by 10^n, where n is the number of digits following V. to_char does not support the use of V combined with a decimal point. (E.g., 99.9V99 is not allowed.)

 

to_char() 함수에서 지금까지 표에 나열된 포멧팅을 활용하는 예시입니다.

Table 9-24 shows some examples of the use of the to_char function.

Table 9-24. to_char Examples

ExpressionResult
to_char(current_timestamp, 'Day, DD  HH12:MI:SS') 'Tuesday  , 06  05:39:18'
to_char(current_timestamp, 'FMDay, FMDD  HH12:MI:SS') 'Tuesday, 6  05:39:18'
to_char(-0.1, '99.99') '  -.10'
to_char(-0.1, 'FM9.99') '-.1'
to_char(0.1, '0.9') ' 0.1'
to_char(12, '9990999.9') '    0012.0'
to_char(12, 'FM9990999.9') '0012.'
to_char(485, '999') ' 485'
to_char(-485, '999') '-485'
to_char(485, '9 9 9') ' 4 8 5'
to_char(1485, '9,999') ' 1,485'
to_char(1485, '9G999') ' 1 485'
to_char(148.5, '999.999') ' 148.500'
to_char(148.5, 'FM999.999') '148.5'
to_char(148.5, 'FM999.990') '148.500'
to_char(148.5, '999D999') ' 148,500'
to_char(3148.5, '9G999D999') ' 3 148,500'
to_char(-485, '999S') '485-'
to_char(-485, '999MI') '485-'
to_char(485, '999MI') '485 '
to_char(485, 'FM999MI') '485'
to_char(485, 'PL999') '+485'
to_char(485, 'SG999') '+485'
to_char(-485, 'SG999') '-485'
to_char(-485, '9SG99') '4-85'
to_char(-485, '999PR') '<485>'
to_char(485, 'L999') 'DM 485
to_char(485, 'RN') '        CDLXXXV'
to_char(485, 'FMRN') 'CDLXXXV'
to_char(5.2, 'FMRN') 'V'
to_char(482, '999th') ' 482nd'
to_char(485, '"Good number:"999') 'Good number: 485'
to_char(485.8, '"Pre:"999" Post:" .999') 'Pre: 485 Post: .800'
to_char(12, '99V999') ' 12000'
to_char(12.4, '99V999') ' 12400'
to_char(12.45, '99V9') ' 125'

 

제 경우 아래와 같은 형태를 이용합니다.

SELECT TO_CHAR(1234567,'FM9,999,999')        ==> '1,234,567'

SELECT TO_CHAR(0,'FM9,999,999')               ==> '0'

 
SELECT TO_CHAR(1234.56,'FM9,999.99')         ==> '1,234.56'

SELECT TO_CHAR(0,'FM9,999.99')                ==> '0.'     <-- 소수점 이하 값이 없어서 지저분하게 "."으로 끝남.

SELECT TO_CHAR(123,'FM9,999.99')              ==> '123.'   <-- 소수점 이하 값이 없어서 지저분하게 "."으로 끝남.

 

SELECT TO_CHAR(0,'FM9,990.09')                ==> '0.0'     <-- 9 대신 0을 사용해서 값이 없는 경우 보기 좋게 변경 가능 함.

SELECT TO_CHAR(123,'FM9,990.09')              ==> '123.0'   <-- 9 대신 0을 사용해서 값이 없는 경우 보기 좋게 변경 가능 함.

 

하지만... 0.0이나 123.0처럼 소수점 이하가 없는 경우에는 깔끔하게(?) 0 또는 123으로 표현하고 싶다면??

템플릿 패턴 수정자인 "FM" 접두어를 사용해서, 0이나 공백을 최대한 없앤 결과 값에서...
다시 rtrim()을 이용해서 가장 우측의 "."을 제거하면 됨.

SELECT RTRIM(TO_CHAR(0,'FM9,999.99'), '.') ==> '0'  <-- 소수점 이하 값이 없을 경우 깔끔하게 제거 됨.

SELECT RTRIM(TO_CHAR(123,'FM9,999.99'), '.') ==> '123'  <-- 소수점 이하 값이 없을 경우 깔끔하게 제거 됨.

 
 
5. 날짜 추출(EXTRACT, date_part)
EXTRACT나 date_part를 이용하면 날짜 데이터에서 다양한 형태(년, 월, 일, 주, 분기, ..)로 추출이 가능합니다.
귀차니즘에 세부 내용은 일단 문서 참고^^;;
 
오늘 날짜
select current_date;     ==> '2016-01-19'
 
현재 시각
select current_timestamp  ==> '2016-01-19 21:01:51.038524+09'
 
주중 요일 구하기 - 2016-01-19는 화요일로서 2입니다.
dow는 일요일부터 토요일 순으로 조회되는데 값은 일요일(0)부터 토요일(6)입니다.
select extract(dow from current_date)      ==> 2
 
isodow는 월요일부터 일요일 순으로 조회되는데 값은 월요일(1)부터 일요일(7)입니다.
select extract(isodow from current_date)  ==> 2
 
즉, dow나 isodow는 일요일이 먼저냐 나중이냐의 차이 외에 월~토요일의 값은 동일합니다.
우리나라 달력은 일요일부터 토요일까지 표시되니 만약 달력을 표현한다면 dow로 조회하면 되겠지요^^
 
한 주의 첫날
select date_trunc('week', current_date)              ==> '2016-01-18 00:00:00+09'
select date(date_trunc('week', current_date))       ==> '2016-01-18'
select date_trunc('week', current_date)::date       ==> '2016-01-18'
 
달력이나 통계에 주로 사용되는 한 주의 첫날은 'week'를 이용하면 쉽게 구할 수 있습니다.
timestamp 형태라서 깔끔하게 날짜만 추출하려면 date() 함수를 이용하거나 date형으로 변환하면 됩니다.
1주일은 총 7일이므로 그 주의 마지막 날을 알고 싶으면 위에서 구한 값에 +6을 해주면 되겠죠^^
 
 

6. epoch

대부분의 시간과 관련된 연산 기능은 출력 형태가 "01:15:00" 처럼 출력되는데, 이때 extract()등의 함수를 이용하면

해당 값에서 원하는 시간이나 분만을 추출할 수는 있지만 "75"분처럼 전체 값을 분 단위나 시간 단위의 형태로는 변환할 수 없습니다.

 

하지만, 통계 등의 화면에서는 사용 시간을 표현 할 때 "01:15:00" 형태 보다는...

사용한 시간이나 분의 정수나 실숫값으로 표현하고 싶을때가 있습니다.

이때에는 date나 timestamp 타입에 사용 가능한 epoch를 이용하면 초 단위로 환산된 값을 알 수 있습니다.

ㅎㅎㅎ.. 너무 오랜만에 사용하다 보니 해당 기능을 찾느라 엄청 고생했기에 별도의 챕터로 빼봤습니다.ㅜㅜ

 

PostgreSQL 문서에는 아래처럼 설명되어 있습니다.

For date and timestamp values, the number of seconds since 1970-01-01 00:00:00-00 (can be negative); for interval values, the total number of seconds in the interval

 

SELECT EXTRACT(EPOCH FROM TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40.12-08');

Result: 982384720.12

 

SELECT EXTRACT(EPOCH FROM INTERVAL '5 days 3 hours');

Result: 442800

 

Here is how you can convert an epoch value back to a time stamp:

 

SELECT TIMESTAMP WITH TIME ZONE 'epoch' + 982384720.12 * INTERVAL '1 second';

(The to_timestamp function encapsulates the above conversion.)

 

예를 들어,

select time '01:00' + interval '3 min'       ==>  '01:03:00'

위 SQL의 결과는 1시간 3분입니다.

 

select EXTRACT(hour from time '01:00' + interval '3 min')     ==> 1

select EXTRACT(minutes from time '01:00' + interval '3 min') ==>  3

위처럼 extract()함수에 hour나 minutes를 지정해서 시간(1)이나 분(3)을 추출할 수는 있지만 63분처럼 분 단위로는 추출되지 않습니다.

(단순히 substring으로 문자열을 추출한 것과 별반 차이가 없죠^^)

 

이때, epoch를 이용해서 '01:30:00'을 초 단위로 변환합니다.

select EXTRACT(EPOCH from time '01:00' + interval '3 min')      ==> 3780

이렇게 변환된 초 값을 60으로 나누면 분이 되고, 다시 60으로 나누면 시간이 되겠죠^^

 

분 단위로 변환...

select EXTRACT(EPOCH from time '01:00' + interval '3 min') / 60  ==> 63

위처럼 63분으로 제대로 변환됩니다.

 

그외 적절히 포멧팅등 필요한 작업을 병행하면 되겠지요^^;;

 

 

7. Etc..

select round(42.4382, 2)         ==> 42.44

select COALESCE('aa','bb')   ==> 'aa'

select COALESCE('','bb')     ==> ''

select COALESCE(null,'bb')   ==> 'bb'

 
COALESCE(A, B) : A 값이 NULL인 경우 B 값으로 치환 함.
 
 

A. 마치며..

보통은 글을 작성하는데 며칠에서 몇 주정도 걸리다 보니 임시 저장 글에 저장해 놓지만 임시 저장된 글들도 너무 많고
매일 새벽에 작성하기에는 여유 시간이 많지 않다 보니 중요도(?)가 높지 않아서 공유 차원에서 먼저 포스팅 후
부족한 부분은 나중에 시간이 되면 수정하거나 별도의 글로 그때그때 포스팅해야 할 것 같네요.*^^*V
개인적으로 참고용으로 작성하는 것이니 그냥 참고만 하세요.^^

 

본문 수정 시 가급적 배포한 곳의 글 들도 함께 수정하려고 노력합니다만 쉽지 않은 작업이라 누락되는 경우가 많습니다.^^;;;
작성한지 오래된 강좌는 가급적 원본 글도 함께 참고 하시기 바랍니다.

 

[참고자료]
PostgreSQL 8.2 - 9.8. Data Type Formatting Functions
 
PostgreSQL 8.1 - 9.9. Date/Time Functions and Operators
 
PostgreSQL 9.1 - 9.9. Date/Time Functions and Operators
 
End.
 
 
 

이 저작물은 크리에이티브 커먼즈 저작자표시-비영리 3.0 Unported 라이선스에 따라 이용할 수 있습니다.  

728x90
반응형