Oracle date如何比较大小分析
程序员文章站
2023-12-03 17:45:40
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;
复制代码 代码如下:
-- 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;
上一篇: 整理汇总Oracle常用命令 方便你我他
下一篇: PHP实现简单搜歌的方法