hi i'm searching in two tables for a string .
$sql="SELECT download.title FROM download
WHERE download.title LIKE '%$search%'
UNION
SELECT news.title FROM news
WHERE news.title LIKE '%$search%' OR news.text LIKE '%$search%' ";
how can i find out what table the records I have found are from?