Re: Search Query
Posted by:
Yola X
Date: August 31, 2010 06:10AM
Each table will need to have all the same column structure, then you can query it in the form:
SELECT * FROM (
(SELECT * FROM tablename1) UNION ALL (SELECT * FROM tablename2)
) t1 ORDER BY columnname;
Subject
Written By
Posted
Re: Search Query
August 31, 2010 06:10AM
September 01, 2010 11:11AM
September 01, 2010 11:35AM
September 01, 2010 12:40PM
September 01, 2010 02:14PM
September 01, 2010 02:18PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.