2007年2月8日 星期四

SQL 在select時直接抓取特定日期的期間方法

select wll_clientip, wll_stamp, wll_fail from WebLoginLog
where wll_stamp between dateadd(month, -3, getdate()) and getdate()

dateadd()為SQL提供的Function, 第一個參數可以是year, month, day, hour, minute, second 甚至到millisecond
第2個參數, 負數為之前時間差, 正數為之後的時間差

沒有留言: