Tento dotaz načte odpovídající interprety, skladby a alba. První sloupec poskytuje vodítko o původu dat, druhý je id a poslední je název.
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%'