Schema Name's: A,B
Both schema have same Table :
Table Name: stock. Feilds no,Stname
I want retrive details from stock table in two schams.
So i use this query :
select no,stname from A.stock union all select no,stname from B.stock
I want to get the tables detail with out union all. Is it possible ? How to do that ?
I am using postgresql 9.0
union all?union allof all your stock tables, and in your project you have to justselectquery this view ?