Câu hỏi được gắn thẻ «postgresql-9.6»

PostgreSQL phiên bản 9.6




1
Nest Loop không mong muốn so với Hash Tham gia vào PostgreSQL 9.6
Tôi gặp rắc rối với kế hoạch truy vấn PostgreSQL 9.6. Truy vấn của tôi trông như thế này: SET role plain_user; SELECT properties.* FROM properties JOIN entries_properties ON properties.id = entries_properties.property_id JOIN structures ON structures.id = entries_properties.entry_id WHERE structures."STRUKTURBERICHT" != '' AND properties."COMPOSITION" LIKE 'Mo%' AND ( properties."NAME" LIKE …


2
Làm cách nào để DISTINCT ON nhanh hơn trong PostgreSQL?
Tôi có một bảng station_logstrong cơ sở dữ liệu PostgreQuery 9.6: Column | Type | ---------------+-----------------------------+ id | bigint | bigserial station_id | integer | not null submitted_at | timestamp without time zone | level_sensor | double precision | Indexes: "station_logs_pkey" PRIMARY KEY, btree (id) "uniq_sid_sat" UNIQUE CONSTRAINT, btree (station_id, …


1
Ràng buộc phân vùng không được sử dụng cho các phép nối liên quan đến các bảng được phân chia theo dấu thời gian
Tôi có một cấu trúc bảng được phân vùng như: CREATE TABLE measurements ( sensor_id bigint, tx timestamp, measurement int ); CREATE TABLE measurements_201201( CHECK (tx >= '2012-01-01 00:00:00'::timestamp without time zone AND tx < ('2012-01-01 00:00:00'::timestamp without time zone + '1 mon'::interval)) )INHERITS (measurements); CREATE INDEX ON measurements_201201(sensor_id); CREATE …



Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.