• The MAX statement will only return one single value. You can get the desired results using the TOP clause:

    SELECT TOP 2

    change_id

    FROM table_a

    ORDER BY change_id DESC

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **