노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.

Postgres SQL - to_char가 응답이 늦을떄(Slow Query)


원문

select
    to_char("Timestamp",'YYYY/MM/DD HH24:MI:SS') as "Timestamp"
from 
    xxx
order by 1 asc


수정

select
    to_char("Timestamp",'YYYY/MM/DD HH24:MI:SS') as "Timestamp"
from (
    select "Timestamp" 
    from xxx
    order by 1 asc
)s


-- 변환 없이 쿼리를 하고, 원하는 포맷으로 감싸라 !!! ( 5배 빨라진다. )


참조 : https://stackoverflow.com/questions/24437023/postgresql-to-char-slowing-query-a-by-a-lot

'DBMS, noSQL > PostgreSQL' 카테고리의 다른 글

DB ERD 추출 하기  (0) 2017.10.27
dblink 문법  (0) 2017.10.25
Postgres 백업 및 복구 ( Backup & Restore with pgAdmin)  (0) 2017.07.21
재구매, 연속 구매  (0) 2017.04.12
Postgres CPU 과다 사용 ( high CPU Usage )  (0) 2017.01.23
블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,