Guys,
I have a table as shown below
I need a query to get all the records for January Column. My SQL view of query looks like below.
SELECT [Record Count].id_Date, [Record Count].[Total number of Successful Jobs], [Record Count].[Number of Jobs completed after manual run], [Record Count].[Number of Jobs completed after restart], [Record Count].[Number of jobs failed - No-follow-up Needed], [Record Count].[Number of jobs failed - Resolved by SPC Team], [Record Count].[Total Number of Jobs Monitored], [Record Count].Remarks
FROM [Record Count]
WHERE ((([Record Count]![id_Date]) Like "*January*"))
ORDER BY [Record Count].id_Date;
I am not getting what i need. Is there any modification i need to do to get only the records having the values January in the Date Field.
Thanks in advance for any help you can offer on this.
Thanks,
Sarathi.