↧
Answer by Gordon Linoff for How to fix SELECT statement to return duplicates
You can use window functions:SELECT comptitle, trknum, cdtitleFROM (SELECT comptitle, trknum, cdtitle, COUNT(*) OVER (PARTITION BY comptitle) as cnt FROM track t JOIN recording r ON t.rcdid = r.rcdid...
View ArticleAnswer by Rodrigo Oliveira for How to fix SELECT statement to return duplicates
What you need is a subquery to first find the duplicated track titles in track table, then join this to the other tables. This subquery would look like: SELECT rcdid, COUNT(*) AS number FROM track...
View ArticleHow to fix SELECT statement to return duplicates
Currently I am trying to return a three table join to find duplicate track titles that are in my a "track" table, and also return the track number | cd title from the other joined tables. My select...
View Article