interval을 이용하면 하루 단위 외에도 시간이나 월등 다양한 연산을 편하게 할 수 있습니다.
자세한 내용은 문서를 참고하시기 바랍니다.
4. 날짜 및 시간 관련 포멧팅
아마 날짜의 기본 연산 외에 가장 많이 사용되는 건 원하는 형태로 출력하거나 추출하는 포멧팅일거라 봅니다.^^
날짜나 시간과 관련된 웬만한 곳에서는 거의 사용됩니다.
PostgreSQL 문서가 워낙 자세하니 문서를 보고 몇 번 실습해보면 충분하리라 봅니다.(모르는 건 떠 넘기기~*^^*)
Table 9-21. Template Patterns for Date/Time Formatting
Pattern
Description
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.
to_char()나 to_date()의 세부 내용은 참고 자료의 PostgreSQL 문서에 자세히 나와있으니 생략..
Table 9-22. Template Pattern Modifiers for Date/Time Formatting
Modifier
Description
Example
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-23shows the template patterns available for formatting numeric values.
Table 9-23. Template Patterns for Numeric Formatting
Pattern
Description
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.
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
Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천 실행시간 : 0.06145 초 to webmaster... gogo sea. gogo sea.