select location ,
name as (select name from tbd b
Join tbt t on t.id =. b.id where x= 456)
From customer
我想上面的 如何才能爲計算列另一個查詢的結果添加到主查詢甲骨文計算列存儲選擇結果
select location ,
name as (select name from tbd b
Join tbt t on t.id =. b.id where x= 456)
From customer
我想上面的 如何才能爲計算列另一個查詢的結果添加到主查詢甲骨文計算列存儲選擇結果
您可能正在寫這樣的子查詢:
select
location,
(select
name
from tbd b Join tbt t
on t.id = b.id
where x= 456) as name
From customer;
請注意,子查詢必須只選擇一列,並且最多隻返回一行。
另請注意,如果與外部查詢相關聯,則查詢可能運行緩慢。您可能想在有關您要做什麼的問題中添加更多詳細信息。
編輯您的問題,並提供樣本數據和期望的結果。如上所述,這個問題確實沒有意義。 –