我是新來甲骨文能如何實現下面的任務請選擇查詢組合在一組PL/SQL選擇querys
查詢在SQLServer2008的任何一個解釋:
輸入:
Select
(Select 'a') a,
(Select 'b') b,
(Select 'c') c
output: a b c
a b c
我怎樣才能做同樣的甲骨文(PL/SQL)
我是新來甲骨文能如何實現下面的任務請選擇查詢組合在一組PL/SQL選擇querys
查詢在SQLServer2008的任何一個解釋:
輸入:
Select
(Select 'a') a,
(Select 'b') b,
(Select 'c') c
output: a b c
a b c
我怎樣才能做同樣的甲骨文(PL/SQL)
您應該在本雙表使用方法:
select 'a' as A, 'b' as B, 'c' as C
from dual;
實際查詢的
:
Select
(Select count() from table1) area1,
(Select count() from table2) area2,
(Select count(*) from table3) area3
from dual;
我假設你想知道如何創建一個別名爲列,像這樣:
SELECT 'a' AS "This is an a" FROM DUAL;
這將使輸出
This is an a
a
您可以以同樣的方式將多個別名分配給多個列:
我實際的SQL查詢「選擇區域1 (從表1 SELECT COUNT(*)), (SELECT COUNT(*) from table2)area2, (Select table(*)from table3)area3「我們可以將它轉換爲oracle查詢,以便它可以在PL/SQL Developer中運行。 –
我得到了錯誤的ORA-00936:缺少表達 –
對不起,更新的查詢 –