溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

大數(shù)據(jù)開發(fā)中文年齡函數(shù)的示例代碼

發(fā)布時(shí)間:2021-12-28 17:58:35 來源:億速云 閱讀:205 作者:小新 欄目:大數(shù)據(jù)

這篇文章主要介紹大數(shù)據(jù)開發(fā)中文年齡函數(shù)的示例代碼,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

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)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI