欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle date如何比较大小分析

程序员文章站 2023-11-12 19:53:52
sql代码 复制代码 代码如下: -- created on 2010/04/17 by nan declare -- local variables here i int...
sql代码
复制代码 代码如下:

-- created on 2010/04/17 by nan
declare
-- local variables here
i integer;
v_date1 date;
v_date2 date;
begin
-- test statements here
v_date1 := sysdate;
v_date2 := to_date( '2008-09-08');
if v_date1 > v_date2 then
dbms_output.put_line( 'if');
else
dbms_output.put_line( 'else');
end if;
end;