sql server中文版的預設的日期欄位datetime格式是yyyy-mm-dd thh:mm:ss.mmm
例如:select getdate()
2004-09-12 11:06:08.177
這對於在要不同資料庫間轉移資料或者習慣oracle日期格式yyyy-mm-dd hh24:mi:ss的人多少有些不方便.
整理了一下sql server裡面可能經常會用到的日期格式轉換方法:
舉例如下:
select convert(varchar, getdate(), 120 )
2004-09-12 11:06:08
select replace(replace(replace(convert(varchar, getdate(), 120 ),'-',''),' ',''),':','')
20040912110608
select convert(varchar(12) , getdate(), 111 )
2004/09/12
select convert(varchar(12) , getdate(), 112 )
20040912
select convert(varchar(12) , getdate(), 102 )
2004.09.12
其它我不常用的日期格式轉換方法:
select convert(varchar(12) , getdate(), 101 )
09/12/2004
select convert(varchar(12) , getdate(), 103 )
12/09/2004
select convert(varchar(12) , getdate(), 104 )
12.09.2004
select convert(varchar(12) , getdate(), 105 )
12-09-2004
select convert(varchar(12) , getdate(), 106 )
12 09 2004
select convert(varchar(12) , getdate(), 107 )
09 12, 2004
select convert(varchar(12) , getdate(), 108 )
11:06:08
select convert(varchar(12) , getdate(), 109 )
09 12 2004 1
select convert(varchar(12) , getdate(), 110 )
09-12-2004
select convert(varchar(12) , getdate(), 113 )
12 09 2004 1
select convert(varchar(12) , getdate(), 114 )
11:06:08.177
以下是在c#下對天數的增加和相減
datetime posttime =datetime.now.subtract(new timespan(convert.toint32(textbox1.text.trim()),0,0,0));
datetime posttime1 =datetime.now.adddays(convert.toint32(textbox1.text.trim()));
textbox2.text = convert.tostring(posttime.toshortdatestring());
textbox3.text = convert.tostring(posttime1.toshortdatestring());
sql語句中時間段查詢格式
1.sql server 2000時間需要用單引號 括起來 strsql.format t select from info where 入庫時間 between strsql begindate.format t y m d sql server中時間需要用單引號 括起來,而access需要 括起...
SQL語句中將字串轉換為時間格式
字串 datetext 2005 10 10 sql server mysql中 cast 2005 10 10 as datetime 如 select from cds where zno list and chnno list2 and recdate cast datetext as dat...
sql語句中的時間處理
我們在用sql語句處理資料庫資料時難免會遇到insert或者update一條資料,資料中的某個欄位是時間格式,那我們怎麼把引數的形式在sql語句中設定成時間格式呢,這裡記錄一下。update t bill contract bill set property fee 480.0,rent fee 6...