摘要:
最近碰到需要查询一个时间段内的数据的问题。想到用between ...and...语句,但是,数据表中年和月都是单独的字段,不方便直接写语句。后来找到一个方法:select *from MonthlyEnterpriseMonitor where cast([Year] AS nvarchar(10))+'-0'+cast([Month] AS nvarchar(10))+'-01 00:00:0... 阅读全文
posted @ 2009-03-06 15:05 王景 阅读(455) 评论(0) 推荐(0) 编辑