技術(shù)頻道導(dǎo)航
HTML/CSS
.NET技術(shù)
IIS技術(shù)
PHP技術(shù)
Js/JQuery
Photoshop
Fireworks
服務(wù)器技術(shù)
操作系統(tǒng)
網(wǎng)站運(yùn)營

贊助商

分類目錄

贊助商

最新文章

搜索

解決:access FormatDateTime 函數(shù)未定義

作者:admin    時(shí)間:2024-6-29 4:5:55    瀏覽:

我用 access 2010編寫sql查詢語句,發(fā)現(xiàn) FormatDateTime 這個(gè)函數(shù)不能使用,提示:

'FormatDateTime' 函數(shù)未定義

通過試驗(yàn),可以用 Format 函數(shù)來代替,例如寫法如下:

Format(dtime,'yyyy-mm-dd hh:nn:ss')

其中,dtime是時(shí)間字段名稱,yyyy-mm-dd hh:nn:ss 是時(shí)間格式:年-月-日 時(shí):分:秒。我們也可以格式化成其他的形式,例如:

Format(dtime,'yyyy-mm-dd')

只保留:年-月-日。

下面是一個(gè)access的sql查詢語句示例:

select top 10 `age`,Format(dtime,'yyyy-mm-dd') from `log` order by id desc

其中,dtime 是一個(gè)時(shí)間字段,它的存儲(chǔ)格式是:yyyy-mm-dd hh:nn:ss,這里把它格式化為 yyyy-mm-dd 的形式。

 

標(biāo)簽: ACCESS  
x
  • 站長推薦
/* 左側(cè)顯示文章內(nèi)容目錄 */