oracle:
系統時間比較熟悉 是select sysdate from dual時間型別獲取;
select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') from dual;以字串形式獲取
db2:
select current timestamp from sysibm.sysdummy1獲取系統時間
還有select current date from sysibm.sysdummy1;獲得日期
select current time from sysibm.sysdummy1;獲得時間
sql server:
使用getdate()
sql server擁有非常強大的日期函式:
select convert(varchar(100), getdate(), 0): 05 16 2008 10:57am
select convert(varchar(100), getdate(), 1): 05/16/08
select convert(varchar(100), getdate(), 2): 08.05.16
select convert(varchar(100), getdate(), 3): 16/05/08
select convert(varchar(100), getdate(), 4): 16.05.08
select convert(varchar(100), getdate(), 5): 16-05-08
select convert(varchar(100), getdate(), 6): 16 05 08
select convert(varchar(100), getdate(), 7): 05 16, 08
select convert(varchar(100), getdate(), 8): 10:57:46
select convert(varchar(100), getdate(), 9): 05 16 2008 10:57:46:827am
select convert(varchar(100), getdate(), 10): 05-16-08
select convert(varchar(100), getdate(), 11): 08/05/16
select convert(varchar(100), getdate(), 12): 080516
select convert(varchar(100), getdate(), 13): 16 05 2008 10:57:46:937
select convert(varchar(100), getdate(), 14): 10:57:46:967
select convert(varchar(100), getdate(), 20): 2008-05-16 10:57:47
select convert(varchar(100), getdate(), 21): 2008-05-16 10:57:47.157
select convert(varchar(100), getdate(), 22): 05/16/08 10:57:47 am
select convert(varchar(100), getdate(), 23): 2008-05-16
select convert(varchar(100), getdate(), 24): 10:57:47
select convert(varchar(100), getdate(), 25): 2008-05-16 10:57:47.250
select convert(varchar(100), getdate(), 100): 05 16 2008 10:57am
select convert(varchar(100), getdate(), 101): 05/16/2008
select convert(varchar(100), getdate(), 102): 2008.05.16
select convert(varchar(100), getdate(), 103): 16/05/2008
select convert(varchar(100), getdate(), 104): 16.05.2008
select convert(varchar(100), getdate(), 105): 16-05-2008
select convert(varchar(100), getdate(), 106): 16 05 2008
select convert(varchar(100), getdate(), 107): 05 16, 2008
select convert(varchar(100), getdate(), 108): 10:57:49
select convert(varchar(100), getdate(), 109): 05 16 2008
mysql:
select now();
輸出 09-12-25
幾種資料庫程式設計介面
從功能簡單的資料庫 如jet engine 到複雜的大型資料庫系統 如oracle vc 6.0都提供了一些程式設計介面。本文主要介紹以下五種 1.odbc api 2.mfc odbc類 3.mfc dao類 資料訪問物件 4.mfc的ole db 5.activex資料物件 ado 1.開放資料...
JDBC 幾種資料庫的URL
jdbc url用於標識乙個被註冊的驅動程式,驅動程式管理器通過這個url選擇正確的驅動程式,從而建立到資料庫的連線。jdbc url的語法如下 jdbc subprotocol subname 整個url用冒號 分為3個部分。1 協議 在上邊的語法中,jdbc是協議。在jdbc中,它是唯一允許的協...
幾種資料庫的sql分頁
oracle 分頁 分頁查詢格式 第1種 select from select a.rownum rn from select from table name a where rownum 40 where rn 21 分頁查詢格式 第2種 select from select a.rownum r...