server日期时间函数
Sql Server中的日期与时间函数 2. dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值 3. datediff 返回跨两个指定日期的日期和时间边界数。 一般的,我们在C#中的语句是:select * from tableName where datediff(d,addTime,'" +this.dateTimePicker1.Value.ToString()+ "')>=0 5. datename 返回代表指定日期的指定日期部分的字符串 6. day(), month(),year() --可以与datepart对照一下 select 当前日期=convert(varchar(10),getdate(),120) select datename(dw,'2004-10-15') select 本年第多少周=datename(week,'2004-10-15')
参数 interval的设定值如下:
access 和 asp 中用date()和now()取得系统日期时间;其中DateDiff,DateAdd,DatePart也同是能用于Access和asp中,这些函数的用法也类似 举例:1.GetDate() 用于sql server :select GetDate() 2.DateDiff('s','2005-07-20','2005-7-25 22:56:32')返回值为 514592 秒 DateDiff('d','2005-07-20','2005-7-25 22:56:32')返回值为 5 天 3.DatePart('w','2005-7-25 22:56:32')返回值为 2 即星期一(周日为1,周六为7) DatePart('d','2005-7-25 22:56:32')返回值为 25即25号 DatePart('y','2005-7-25 22:56:32')返回值为 206即这一年中第206天 DatePart('yyyy','2005-7-25 22:56:32')返回值为 2005即2005年 |
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1439591