【发布时间】:2010-03-25 12:02:15
【问题描述】:
undefine dates
declare
v_dateInput VARCHAR(10);
v_dates DATE;
begin
v_dateInput := &&dates;
v_dates := to_date(v_dateInput,'dd-mm-yyyy');
DBMS_OUTPUT.put_line(v_dates);
end;
不知道为什么每当我使用 03-03-1990 输入运行此代码时,就会出现此错误。
Error report:
ORA-01847: day of month must be between 1 and last day of month
ORA-06512: at line 6
01847. 00000 - "day of month must be between 1 and last day of month"
*Cause:
*Action:
【问题讨论】:
标签: oracle plsql plsqldeveloper