«postgresql» 태그된 질문

PostgreSQL은 Linux, UNIX, Windows 및 OS X를 포함한 모든 주요 플랫폼에서 사용할 수있는 오픈 소스 객체 관계형 데이터베이스 관리 시스템 (ORDBMS)입니다. 질문을 할 때는 정확한 Postgres 버전을 언급하십시오. 관리 또는 고급 기능에 관한 질문은 dba.stackexchange.com에 가장 적합합니다.


1
Postgres에서 행 번호 선택
postgres에서 행 번호를 선택하는 방법. 나는 이것을 시도했다 : select row_number() over (ORDER BY cgcode_odc_mapping_id)as rownum, cgcode_odc_mapping_id from access_odc.access_odc_mapping_tb order by cgcode_odc_mapping_id 이 오류가 발생했습니다. ERROR : "over"또는 그 부근의 구문 오류 LINE 1 : (ORDER BY cgcode_odc_mapping_id)를 통해 row_number ()를 선택합니다. 이 페이지를 확인 했습니다. PostgreSQL 쿼리에서 행 번호를 …


11
공식 PostgreSQL Docker 이미지의 구성 파일을 사용자 지정하는 방법은 무엇입니까?
구성을 사용자 지정하려는 공식 Postgres Docker 이미지를 사용 하고 있습니다. 이를 위해 다음과 같이 명령 sed을 사용하여 변경 max_connections합니다. sed -i -e"s/^max_connections = 100.*$/max_connections = 1000/" /var/lib/postgresql/data/postgresql.conf 이 구성을 적용하기 위해 두 가지 방법을 시도했습니다. 첫 번째는 스크립트에 명령을 추가하고 init 폴더 "/docker-entrypoint-initdb.d"내에 복사하는 것입니다. 두 번째 방법은 "RUN"명령을 사용하여 …
102 postgresql  docker 

6
PostgreSQL 서버 Mac OS X의 상태를 확인하는 방법
내 Postgresql 서버가 실행 중인지 여부를 어떻게 알 수 있습니까? 이 메시지가 나타납니다. [~/dev/working/sw] sudo bundle exec rake db:migrate rake aborted! could not connect to server: Connection refused Is the server running on host "localhost" and accepting TCP/IP connections on port 5432? 최신 정보: > which postgres /usr/local/bin/postgres > pg_ctl …
101 macos  postgresql 


4
PostgreSQL : 다른 테이블에서 삽입
다른 테이블의 테이블에 데이터를 삽입하려고하는데 테이블에는 공통 열이 하나만 있습니다. 문제는 TABLE1에 null 값을 허용하지 않는 열이 있으므로 비워 둘 수 없으며 TABLE2에서 가져올 수 없다는 것입니다. 나는 TABLE1이 있습니다 : id, col_1 (null 아님), col_2 (null 아님), col_3 (널 아님) 및 TABLE2 : id, col_a, col_b, col_c 그래서 어떻게 …
101 sql  postgresql  insert  append 



3
반환 된 값이 null 인 경우 postgresql은 0을 반환합니다.
avg (price)를 반환하는 쿼리가 있습니다. select avg(price) from( select *, cume_dist() OVER (ORDER BY price desc) from web_price_scan where listing_Type='AARM' and u_kbalikepartnumbers_id = 1000307 and (EXTRACT(Day FROM (Now()-dateEnded)))*24 < 48 and price>( select avg(price)* 0.50 from(select *, cume_dist() OVER (ORDER BY price desc) from web_price_scan where listing_Type='AARM' and u_kbalikepartnumbers_id = …
101 sql  postgresql 



13
SQL 결과를 has-many-through 관계로 필터링하는 방법
나는 테이블을 가지고 가정 student, club그리고 student_club: student { id name } club { id name } student_club { student_id club_id } 축구 (30) 동아리와 야구 (50) 동아리의 모든 학생들을 찾는 방법을 알고 싶습니다. 이 쿼리는 작동하지 않지만 지금까지 가장 가까운 것입니다. SELECT student.* FROM student INNER JOIN student_club sc …

5
Postgresql이 수퍼 유저로 "createdb"를 사용하여 db를 생성하지 않지만 오류를 출력하지 않음 [중복]
이 질문에 이미 답변이 있습니다 . psql에서 일부 명령이 효과가없는 이유는 무엇입니까? (2 답변) 휴일 개월 전 . 나는 'postgres'슈퍼 유저와 함께 새로운 postgresql 설치로 작업하고 있습니다. 다음을 통해 로그인 : sudo -u postgres psql postgres=# createdb database postgres-# \list List of databases Name | Owner | Encoding | Collation …
100 postgresql  psql 

1
postgresql에서 변수 값 인쇄
postgresql 함수가 있습니다. CREATE OR REPLACE FUNCTION fixMissingFiles() RETURNS VOID AS $$ DECLARE deletedContactId integer; BEGIN SELECT INTO deletedContactId contact_id FROM myContacts WHERE id=206351; -- print the value of deletedContactId variable to the console END; $$ LANGUAGE plpgsql; deletedContactId의 값을 콘솔에 어떻게 인쇄 할 수 있습니까?
100 sql  postgresql 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.