oracle sql日期比较: 在当前时间之前:
select * from up_date where update < to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) select * from up_date where update <= to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘)
在当前时间只后:
select * from up_date where update > to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) select * from up_date where update >= to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘)
精确时间:
select * from up_date where update = to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘)
在某段时间内:
select * from up_date where update between to_date(‘2007-07-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) and to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) select * from up_date where update < to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) and update > to_date(‘2007-07-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) select * from up_date where update <= to_date(‘2007-09-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) and update >= to_date(‘2007-07-07 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘)
1. 当前时间系统日期、时间 select getdate() 2. dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,‘2004-10-15‘) --返回:2004-10-17 00:00:00.000 3. datediff 返回跨两个指定日期的日期和时间边界数。 4. datepart 返回代表指定日期的指定日期部分的整数。 5. datename 返回代表指定日期的指定日期部分的字符串 6. day(), month(),year() --可以与datepart对照一下 select 当前日期=convert(varchar(10),getdate(),120) 7. select datename(dw,‘2004-10-15‘) select 本年第多少周=datename(week,getdate()) 函数 参数/功能 参数 interval的设定值如下: 值 缩 写(Sql Server) Access 和 ASP 说明 access 和 asp 中用date()和now()取得系统日期时间;其中DateDiff,DateAdd,DatePart也同是能用于Access和asp中,这些函数的用法也类似 举例: 2.DateDiff(‘s‘,‘2005-07-20‘,‘2005-7-25 22:56:32‘)返回值为 514592 秒 3.DatePart(‘w‘,‘2005-7-25 22:56:32‘)返回值为 2 即星期一(周日为1,周六为7) SQL Server DATEPART() 函数返回 SQLServer datetime 字段的一部分。 SQL Server DATEPART() 函数的语法是: 其中 datetime 是 SQLServer datetime 字段和部分的名称是下列之一: Ms for Milliseconds --1.编写函数,实现按照‘年月日,星期几,上午下午晚上‘输出时间信息(2009年3月16日星期一下午) |