-
Sep232010
计算今天是星期几
select datename(weekday,getdate())
查询本年的数据
select * from users where year(time)=year(getdate())
查询本月的数据,time是表users中代表时间的字段
select * from users where month(time)=month(getdate()) and year(time)=year(getdate())
查询今天的数据,time 是表中代表时间的字段
select * from users where day(time)=day(getdate()) and mont...阅读全文
-
Aug152010
Sql Server 中一个非常强大的日期格式化函数
Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM
Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06
Select CONVERT(varchar(100), GETDATE(), 2): 06.05.16
Select CONVERT(varchar(100), GETDATE(), 3): 16/05/06
Select CONVERT(varchar(100), GETDATE(), 4): 16.05.06
Select CONVERT(varchar(100), GETDATE(), 5): 1...阅读全文
-
Aug152010
[coolcode]
select * from [表名] where CONVERT(varchar(8),[列名],112)=CONVERT(varchar(8),GetDate(),112)
[/coolcode]
阅读全文