Skip to content

Instantly share code, notes, and snippets.

@williamjacksn
Created March 8, 2012 17:11
Show Gist options
  • Save williamjacksn/2002122 to your computer and use it in GitHub Desktop.
Save williamjacksn/2002122 to your computer and use it in GitHub Desktop.
Rainwave SQL / Possible song title collisions
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