Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Filter by month and year
Message
 
 
To
05/01/2005 09:34:35
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
00974373
Message ID:
00974387
Views:
15
DECLARE @StartDate datetime, @Enddate datetime
SET @StartDate = CAST(@year*10000 + @month*100 + 01 AS char(8)) 
SET @Enddate = DATEADD(mm, 01, @StartDate)
...
  WHERE mydatefield >= @StartDate AND mydatefield < @Enddate
...
>Can someone please help me, I have some records with date field type, what I want to ask is simple: how to filter those records by month and year .. (ie. I want to show sales records with the following criteria:
>
>date field is salesdate
>
>month = 12
>year = 2004
>
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform