
how can i select the date field from multiple tables in mysql?

"UNION" can be used to select data from multiple tables in my sql... for example
(SELECT * from name where `name` = 'blue') UNION (SELECT * from details where `name` = 'blue')
like that..