add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
CREATE TABLE c (
"client_id" INTEGER,
"place_name" VARCHAR(6),
"total purchase" INTEGER,
"detail purchase" INTEGER,
"percent" FLOAT
);

INSERT INTO c
("client_id", "place_name", "total purchase", "detail purchase", "percent")
VALUES
('1', 'place1', 10, 7, 0.7),
('1', 'place2', 10, 3, 0.3),
('2', 'place1', 5, 4, 0.8),
('2', 'place3', 5, 1, 0.2);
4 rows affected
select place_name
from c
group by place_name
having min(percent)>=0.7
place_name
place1