Truy vấn này sẽ truy xuất các nghệ sĩ, bài hát và album phù hợp. Cột đầu tiên cung cấp manh mối về nguồn gốc của dữ liệu, cột thứ hai là id và cột cuối cùng là tên.
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%'