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
id name
1 IBM
2 Microsoft
3 Google
4 Silicon&Synapse
INSERT 0 4
CREATE TABLE
id name company_id
1 Ted 1
2 Bob 1
3 Dan 1
4 Edd 4
INSERT 0 4
id name employee_person_id employee_person_name
2 Microsoft null null
3 Google null null
4 Silicon&Synapse 4 Edd
1 IBM 1 Bob
SELECT 4
id name id name
1 IBM 1 Ted
2 Microsoft null null
3 Google null null
4 Silicon&Synapse 4 Edd
SELECT 4
id name id name
1 IBM 1 Ted
2 Microsoft null null
3 Google null null
4 Silicon&Synapse 4 Edd
SELECT 4