Created
March 8, 2012 17:11
-
-
Save williamjacksn/2002122 to your computer and use it in GitHub Desktop.
Rainwave SQL / Possible song title collisions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
max(sid), | |
song_filename | |
from | |
rw_songs | |
where | |
song_verified is true | |
group by | |
song_filename | |
having | |
count(song_filename) < 2 | |
order by | |
song_filename; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment