public inbox for [email protected]
help / color / mirror / Atom feedFrom: Lea Führer <[email protected]>
To: [email protected]
Subject: MERGE INTO... WHEN NOT MATCHED BY SOURCE index usage
Date: Mon, 23 Feb 2026 15:18:19 +0100
Message-ID: <[email protected]> (raw)
Hello!
I've read through the new MERGE documentation with the new WHEN NOT
MATCHED BY SOURCE functionality and tried it out.
It seems to me like one very common use-case, and one I have bumped into
often, is to update a n:m resolution table, like this for example:
CREATE TABLE courses (course_id INTEGER PRIMARY KEY);
CREATE TABLE students (student_id INTEGER PRIMARY KEY);
CREATE TABLE students_courses (course_id INTEGER REFERENCES
courses(course_id), student_id INTEGER REFERENCES students(student_id),
PRIMARY KEY(student_id,course_id));
/* Insert example data... */
INSERT INTO students
SELECT s FROM generate_series(1,100000) s;
INSERT INTO courses
SELECT c FROM generate_series(1,50) c;
INSERT INTO students_courses (course_id, student_id)
SELECT c, s FROM generate_series(1,50) c, generate_series(1,100000) s;
/* Student nr 5 is only enrolled in courses 7,8,9 */
MERGE INTO students_courses
USING (VALUES (7),(8),(9)) as s(source_course_id) ON
students_courses.student_id=5 AND students_courses.course_id =
source_course_id
WHEN NOT MATCHED BY TARGET THEN INSERT VALUES (source_course_id, 5)
WHEN NOT MATCHED BY SOURCE AND student_id=5 THEN DELETE;
SELECT * FROM students_courses
WHERE student_id=5;
The example above works, but looking at the execution plan it does a
full seq scan on students_course without any filter for student_id.
Do I misunderstand the usage of MERGE WHEN NOT MATCHED BY SOURCE? Is
this a non intended use-case? Is there another way of defining a filter
for the MERGE command?
Updating a many-to-many relationship seems like a very common use-case
to me, and the new MERGE seems perfect for this, but in practice the
fact it doesn't use an index seems to make it very ineffective
performance wise for this.
view thread (2+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected]
Subject: Re: MERGE INTO... WHEN NOT MATCHED BY SOURCE index usage
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox