I have made a query called Level Level 1(Make Table) to make a table called "Ranking". This is where I'm stumped. I'm told to make a query based on "Ranking" table and join itself so it will give me the ranks. I have tried this and it doesn't seem to work. This is the code that I have so far, not sure if its right or not, and don't know what to do next.
Code:
SELECT Ranking.Entrynumber, Ranking.FirstName, Ranking.LastName, Ranking.Shift, Ranking.Level, Ranking.Alternate, Ranking.Date, Ranking.Inactive, Ranking.R
FROM Ranking AS Ranking_1 LEFT JOIN Ranking ON Ranking_1.Entrynumber = Ranking.Entrynumber;