sql_union all_列別名

wisdomone1發表於2010-12-17

select 1 id,
       12 a,
       13 b
from dual
union all
select 2,
       8,
       -2
from dual

執行結果

 id     a    b 
 1  12    13
 2   8     -2

     

       小結:

                     union all之類的sql運算,最終結果集的列別名由union all首個資料來源集的列別名確定

                    
         

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-682047/,如需轉載,請註明出處,否則將追究法律責任。

相關文章