轉換日期時間函式

2021-04-07 09:56:31 字數 987 閱讀 1297

function convertdate(sdate)

'轉換時間格式

on error resume next

s_date = right(year(sdate),2)

if len(month(sdate))=1 then

s_date =s_date&"0"&month(sdate)

else

s_date =s_date&month(sdate) 

end if

if len(day(sdate))=1 then

s_date =s_date&"0"&day(sdate)

else

s_date =s_date&day(sdate)

end if

if len(hour(sdate))=1 then

s_date =s_date&"0"&hour(sdate)

else

s_date =s_date&hour(sdate)

end if

if len(minute(sdate))=1 then

s_date =s_date&"0"&minute(sdate)

else

s_date =s_date&minute(sdate)

end if

if len(second(sdate))=1 then

s_date =s_date&"0"&second(sdate)

else

s_date =s_date&second(sdate)

end if     

convertdate = s_date

end function

示例:s_date=convertdate(date)

s_date 的值為20060101這樣格式。

s_datetime=convertdate(now)

s_date 的值為20060101010101這樣格式。

mysql日期 時間轉換函式

mysql日期 時間轉換函式 1 時間 秒轉換函式 time to sec time sec to time seconds select time to sec 01 00 05 3605 select sec to time 3605 01 00 05 2 日期 天數轉換函式 to days d...

MySQL 日期函式 轉換時間戳

from unixtime unixtime,format 用途 將數字型的unix 時間日期值轉為de日期值 引數說明 unixtime bigint型別,秒數,unix格式的日期時間值,若輸入為string,double型別會隱式轉換為bigint後參與運算。根據format格式化。如果form...

日期時間轉換

1 long 時間戳 to localdatetime private localdatetime parsingtimestamp long timestamp 2 long 時間戳 to 格式化時間字串 private static final datetimeformatter dtf dat...

Mysql日期函式 日期時間格式轉換函式詳解

在php 開發中,mysql資料庫設計中日期時間欄位必不可少,由於mysql日期函式輸出的日期格式與php日期函式之間的日期格式相容性不夠,這就需要根據 實際情況使用mysql或php日期轉換函式進行日期格式的轉換。從開發便捷的角度來說,涉及到大量日期計算時使用unix時間戳格式進行日期計算或儲存是...

時間戳轉換日期 日期轉換時間戳 時間戳轉換星期

時間戳轉換日期 string date orderinfo.getchangetime replace null dateformat sdf new dateformat mm dd string monthdate sdf.format new date long.parselong date ...