Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sql-184: implementation #132

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion sql-queries-3/remove-duplicates/remove-duplicates-postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,33 @@ USING (
) t
WHERE t.rn > 1
) duplicate
WHERE Registration.id = duplicate.id;
WHERE Registration.id = duplicate.id;

-- Remove Duplicates Without a Unique Identifier

-- Removing with CTE and USING clause
WITH RankedStudentRegistration AS (
SELECT semester, year, course_id, student_id,
ROW_NUMBER() OVER (
PARTITION BY semester, year, reg_datetime, course_id, student_id
ORDER BY (SELECT NULL)
) AS rn
FROM Registration
)

DELETE FROM Registration
USING RankedStudentRegistration
WHERE (
Registration.semester = RankedStudentRegistration.semester
AND Registration.year = RankedStudentRegistration.year
AND Registration.course_id = RankedStudentRegistration.course_id
AND Registration.student_id = RankedStudentRegistration.student_id
AND RankedStudentRegistration.rn > 1
);

-- Removing using ctid system column
DELETE FROM Registration
WHERE ctid NOT IN (
SELECT MIN(ctid) FROM Registration
GROUP BY semester, year, course_id, student_id, reg_datetime
);
24 changes: 23 additions & 1 deletion sql-queries-3/remove-duplicates/remove-duplicates-sqlserver.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,26 @@ WITH COUNTED_DUPLICATES AS (
FROM Registration
)
DELETE FROM COUNTED_DUPLICATES
WHERE rn > 1;
WHERE rn > 1;


-- Remove Duplicates Without a Unique Identifier

-- Removing with CTE and Inner Join
WITH RankedStudentRegistration AS (
SELECT semester, year, course_id, student_id,
ROW_NUMBER() OVER (
PARTITION BY semester, year, reg_datetime, course_id, student_id
ORDER BY (SELECT NULL)
) AS rn
FROM Registration
)

DELETE Registration FROM Registration
INNER JOIN RankedStudentRegistration
ON
Registration.semester = RankedStudentRegistration.semester
AND Registration.year = RankedStudentRegistration.year
AND Registration.course_id = RankedStudentRegistration.course_id
AND Registration.student_id = RankedStudentRegistration.student_id
WHERE RankedStudentRegistration.rn > 1;