728x90
반응형
SMALL
postgreSQL 이번달의 첫번째날, 마지막날 구하기
SELECT cast(date_trunc('month',current_date) as date) as firstday,
(date_trunc('MONTH', current_date) + INTERVAL '1 MONTH - 1 day')::date lastday;
current_date를 활용한다.
728x90
반응형
LIST
'PostgreSQL' 카테고리의 다른 글
postgreSQL 테이블명 동적으로 조회하기 (0) | 2023.03.14 |
---|---|
postgreSQL ifnull 대신 역할 - coalesce()!!! (0) | 2023.03.13 |
postgreSQL AES 암호화 복호화 (0) | 2023.03.13 |
ERROR: operator does not exist: bigint = character varying (0) | 2020.11.17 |
PostgreSQL - auto increment 기능 만들기 (0) | 2020.11.17 |