Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%\10%The%Blues%Brothers%B%Movie%Box%Car%Blues%'
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%Blues%'
Moderators: Gurus, Addon Administrators
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%\10%The%Blues%Brothers%B%Movie%Box%Car%Blues%'
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%Blues%'
jiri wrote:MMW5 (rather early in the development atm)
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%10%' AND Songs.SongPath LIKE '%The%' AND Songs.SongPath LIKE '%Blues%' AND Songs.SongPath LIKE '%Brothers%' AND Songs.SongPath LIKE '%B%' AND Songs.SongPath LIKE '%Movie%' AND Songs.SongPath LIKE '%Box%' AND Songs.SongPath LIKE '%Car%' AND Songs.SongPath LIKE '%Blues%'