B
Ben
I have a query that posts all the data in descending order. I want to show
the last entry only. Is that possible? Here is my query.
SELECT tblBuildsWAR.BuildNumber, tblBuildsWAR.PreviousStatus,
tblBuildsWAR.CurrentStatus, tblWAR.StartDate, tblWAR.EndDate,
tblBuildsWAR.WarFK
FROM tblWAR INNER JOIN tblBuildsWAR ON tblWAR.WARPK = tblBuildsWAR.WarFK
ORDER BY tblWAR.StartDate DESC;
I would assume to have something look into the tblBuildsWAR.WarFK field, but
I'm not sure.
the last entry only. Is that possible? Here is my query.
SELECT tblBuildsWAR.BuildNumber, tblBuildsWAR.PreviousStatus,
tblBuildsWAR.CurrentStatus, tblWAR.StartDate, tblWAR.EndDate,
tblBuildsWAR.WarFK
FROM tblWAR INNER JOIN tblBuildsWAR ON tblWAR.WARPK = tblBuildsWAR.WarFK
ORDER BY tblWAR.StartDate DESC;
I would assume to have something look into the tblBuildsWAR.WarFK field, but
I'm not sure.