B
Ben
I have a query that pulls all the records in descending order by a field name
called End Date. I want to pull the records that have occured in the past 7
days only. Here is my SQL code for now: What am I missing?
SELECT tblBuildsWAR.BuildNumber, tblBuildsWAR.PreviousStatus,
tblBuildsWAR.CurrentStatus, tblWAR.StartDate, tblWAR.EndDate
FROM tblWAR INNER JOIN tblBuildsWAR ON tblWAR.WARPK = tblBuildsWAR.WarFK
ORDER BY tblWAR.StartDate DESC;
Please help
called End Date. I want to pull the records that have occured in the past 7
days only. Here is my SQL code for now: What am I missing?
SELECT tblBuildsWAR.BuildNumber, tblBuildsWAR.PreviousStatus,
tblBuildsWAR.CurrentStatus, tblWAR.StartDate, tblWAR.EndDate
FROM tblWAR INNER JOIN tblBuildsWAR ON tblWAR.WARPK = tblBuildsWAR.WarFK
ORDER BY tblWAR.StartDate DESC;
Please help