Oracle之:Function :getcurrdate()

mac2022-06-30  93

getdate()函数连接请戳这里

create or replace function getcurrdate(i_date date) return date is v_date date; v_datestr varchar2(10); begin if i_date is null then v_date := sysdate; else v_date := i_date; end if; v_datestr := to_char(v_date,'yyyy-MM-dd'); return getdate(v_datestr); end getcurrdate;

转载于:https://www.cnblogs.com/bilaisheng/p/10210988.html

最新回复(0)