Wybierz ostatni wiersz w tabeli SQL

Czy jest możliwe zwrócenie ostatniego wiersza tabeli w MS SQL Server. Używam pola auto-inkrementacji dla ID i chcę, aby dodany został ostatni, aby dołączyć go do czegoś innego. Dowolny pomysł?

Oto kod:

const string QUERY = @"INSERT INTO Questions (ID, Question, Answer, CategoryID, Permission) " 
                   + @"VALUES (@ID, @Question, @Answer, @CategoryID, @Permission) "; 

using (var cmd = new SqlCommand(QUERY, conn)) 
{ 
    cmd.Parameters.AddWithValue("@Question", question); 
    cmd.Parameters.AddWithValue("@Answer", answer); 
    cmd.Parameters.AddWithValue("@CategoryID", lastEdited);
    cmd.Parameters.AddWithValue("@Permission", categoryID);
    cmd.ExecuteNonQuery(); 
}

questionAnswers(7)

yourAnswerToTheQuestion