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?.
INSERT 0 6
col1 col2 col3 ctid row_number
a a a (0,1) 1
a a a (0,3) 2
a a a (0,6) 3
b b b (0,2) 1
c c c (0,4) 1
c c c (0,5) 2
SELECT 6
ctid
(0,3)
(0,6)
(0,5)
SELECT 3
DELETE 3
col1 col2 col3
a a a
b b b
c c c
SELECT 3