Oct 14, 2003 #1 Mdiaz Programmer Jul 8, 2002 32 US What would a SQL statement look like that retrieves records that fall within the current week, using the DatePart('ww',field) function? Thanks, Mike...
What would a SQL statement look like that retrieves records that fall within the current week, using the DatePart('ww',field) function? Thanks, Mike...
Oct 14, 2003 1 #2 maswien Technical User Sep 24, 2003 1,286 CA select * from table1 where DatePart(ww,field) = datepart(ww,getdate()) Upvote 0 Downvote