select product.id,product.name,product.itemcode,sum(product.amount)as total_amount
from product where product.account in
select G.account from report_results G
where G.status='Y')
group by product.id,product.name,product.itemcode
考慮以上爲QUERY1Oracle查詢發現問題
現在爲了執行操作我修改了QUERY1如下(我使用了一個名爲proc_temp
(select product.id,product.name,product.itemcode,sum(product.amount)as total_amount
from product where product.account in
(select G.account from report_results G
where G.status='Y'))as Input,proc_temp
where Input.id=proc_temp.id
上述新表查詢的格式不正確。我想用一個新表proc_temp 加入查詢1,並比較它的兩個id列。請幫助我在語法上進行更正。
請提供樣本數據和所需輸出。 – RedFilter