declare
v_date date;
CURSOR abc
is
select a_date
from abc
where part_id ='E00000001';
begin
open abc;
fetch abc into v_date;
close abc;
dbms_output.put_line('date is '||v_date);
end;
/
這裏我的約會對象是被取爲'31 /2099分之1223:59:59' ,現在的問題是,當我使用遊標提取到v_date這個公司來了... .date是31/DEC/99日期格式錯誤
可能是什麼問題
我使用的Oracle RDBMS作爲
究竟是什麼列類型是'a_date'? – Yahia
它的日期數據類型 – gaurav
好的 - 請參閱下面的答案... – Yahia