0
我下面的查詢:在Oracle中創建一個查詢,以取代變量
SELECT c.accountid, c.accountnum
FROM account o, [email protected] c
WHERE o.accountid = c.accountid and c.date > sysdate;
我登錄鄰數據中心」數據庫,以及從C數據中心的數據庫中提取信息,我需要一個簡單的PL/SQL查詢如下:
declare
variable
begin
statements...
....
end
我不希望任何程序或功能。
我想要做的就是用[email protected] c
和sysdate
作爲變量。
select c.accountid, c.accountnum
from account o, (variable)
where o.accountid = c.accountid and c.date > (variable);
我該怎麼做?