hey guys i just want to search ( Select ) in multiple tables , so i wrote bellow code :
SELECT s.title From table_stories s WHERE s.title = %$inputbox%
UNION
SELECT e.title From table_pages e WHERE e.title = %$inputbox%
is it wrong to use UNION >?!