Questa query recupererà artisti, brani e album corrispondenti. La prima colonna fornisce un indizio sull'origine dei dati, la seconda è id e l'ultima è il nome.
select 'Artists' OriginatingTable, id, name
from artists
where name like '%snoop%'
union all
select 'Albums', id, name
from albums
where name like '%snoop%'
union all
select 'Songs', id, name
from songs
where name like '%snoop%'