這篇文章主要介紹大數(shù)據(jù)開發(fā)中文年齡函數(shù)的示例代碼,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
大渡口網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),大渡口網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為大渡口上千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的大渡口做網(wǎng)站的公司定做!
create or replace function CHINESEAGE(BirthDate in date, NowDate in date) return string is Result string(80); -- 返回值 MonthCount number(4,0); -- 出生的月份 DayCount number(6,0); -- 去除月份后的余數(shù)(天) begin -- 如果生日大于當(dāng)前日期,則提示錯(cuò)誤 if BirthDate > NowDate or BirthDate is null or NowDate is null Then Result := '不詳'; return(Result); end if; -- 獲取出生多少個(gè)月余多少天 SELECT trunc(Mon), trunc((Mon - trunc(Mon)) * 31) INTO MonthCount,DayCount FROM (SELECT months_between(NowDate, BirthDate) Mon FROM dual) V; -- 如果出生60個(gè)月以上,年齡顯示為 ##歲 if MonthCount >= 60 then Result := to_char(trunc(MonthCount/12))||'歲'; -- 如果出生12-59個(gè)月,年齡顯示為 ##歲##月 elsif MonthCount >= 12 then Result := to_char(trunc(MonthCount/12))||'歲'||to_char(mod(MonthCount,12))||'月'; -- 如果出生1-11個(gè)月,年齡顯示為 ##月##天 elsif MonthCount >= 1 then Result := to_char(MonthCount)||'月'; if DayCount >= 1 then Result := Result || to_char(DayCount) || '天'; end if; -- 如果出生1天-1個(gè)月,年齡顯示為##天 elsif DayCount >= 1 then Result := to_char(DayCount)||'天'; -- 如果出生不足1天,年齡顯示為1天 else Result := '1天'; end if; return(Result); end;
以上是“大數(shù)據(jù)開發(fā)中文年齡函數(shù)的示例代碼”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!