泛微oa資料庫之獲取日期時間

2021-10-24 16:25:59 字數 1264 閱讀 6742

select '當前週數為:第'

+(select datename

(week,

getdate()

))+'周'

--文字

select '當前年份為:'

+(select datename

(year,

getdate()

))+'年'

select '當前月份為:'

+(select datename

(month,

getdate()

))+'月'

select '當前日期為:'

+(select datename

(day,

getdate()

))+'日'

select '當前為:'

+(select datename

(dw,

getdate()

))select convert

(char(7

),getdate()

,111

)--日期按鈕

select convert

(nvarchar(12

),getdate()

,108

)--時間按鈕

select '當前時間為:'

+(select

convert

(nvarchar(12

),getdate()

,111)+

datename

(hour,

getdate()

)+':'+

datename

(minute,

getdate()

)+':'+

datename

(second,

getdate()

)+' '+

datename

(dw,

getdate()

)+' 第'

+datename

(week,

getdate()

)+'周')

select convert

(char(12

),dateadd

("m",-

2,getdate()

),111)

--前兩個月的今天

泛微OA系統後台連線資料庫的檔案

泛微oa系統連線oracle資料庫的檔案存放在 內容如下 db.driver oracle.jdbc.driver.oracledriver db.url jdbc oracle thin ilanni.com 1521 orcl db.username db.password db.max 250...

Oracle 獲取系統日期時間,匯出資料庫

rem 如果檔案存在,那麼退出 rem if exists exp file goto end1 set store path d 營銷開發日常備份 資料庫備份 hndl yyyymmdd ppqq dmp rem 到出檔案 echo on exp hndl hndl hndl full n gra...

資料庫獲取時間

獲得系統中當前時間 select to char sysdate,yyyy mm dd from dual select to char sysdate,yy mm dd hh24 mi from dual字元 說明 時間分隔符。在某些區域設定中,可以使用其他字元表示時間分隔符 例如 hh時 mm分...