728x90
반응형

Database/PostgreSQL 4

[postgresql] 게시판 글 상세화면 쿼리에서 이전글 이전행 다음글 다음행 시퀀스 인덱스 가져오는 쿼리 기본 함수 LAG, LEAD

게시글의 목록화면에서는 이전글 다음글은 쿼리상 행으로 이전글 다음글 인덱스를 가지고 오기 쉬웠는데 상세화면에서 하단에 있을 다음글, 이전글 인덱스를 가져오려니까 어떻게 해야 하나 고민이 되었다. 다행이 기본 함수에 관련된 함수가 있어서 쉽게 가져올 수 있었다. 해당 함수는 오라클(ORACLE)이나 마리아디비(Mariadb) 뭐 마리아디비에도 있으니 mysql에도 있지않을까.. 아무튼 포스트그레sql 에서는 해당 함수를 아래와 같이 사용한다. LAG(컬럼명, 몇번째 행) OVER( ORDER BY 컬럼명) LEAD(컬럼명, 몇번째 행) OVER( ORDER BY 컬럼명) LAG(컬럼명, 몇번째 행) OVER( ORDER BY 컬럼명) LEAD(컬럼명, 몇번째 행) OVER( ORDER BY 컬럼명) 예시를..

Database/PostgreSQL 2024.03.30

[PostgreSQL] localhost 말고 ip로 접속 하는데 안될 때 해결 방법

2024.01.02 - [Database/PostgreSQL] - [PostgreSQL] windows에 포스트그레스큐엘 설치하기 [PostgreSQL] windows에 포스트그레스큐엘 설치하기 https://www.enterprisedb.com/downloads/postgres-postgresql-downloads Community DL Page Note: EDB no longer provides Linux installers for PostgreSQL 11 and later versions, and users are encouraged to use the platform-native packages. Version 10.x and below pkguma.tistory.com postgresql을 위 ..

Database/PostgreSQL 2024.01.02

[PostgreSQL] windows에 포스트그레스큐엘 설치하기

https://www.enterprisedb.com/downloads/postgres-postgresql-downloads Community DL Page Note: EDB no longer provides Linux installers for PostgreSQL 11 and later versions, and users are encouraged to use the platform-native packages. Version 10.x and below will be supported until their end of life. For more information, please see this blog p www.enterprisedb.com 위 사이트에 가서 원하는 버전을 다운로드 한다. 나는 15...

Database/PostgreSQL 2024.01.02
728x90
반응형
LIST