Answers for "how to sort and select data depending on the one which came first in sql"

SQL
0

sql sort ages

SELECT q.* 
    FROM (SELECT TOP 3 * 
              FROM table 
              ORDER BY id DESC) q
    ORDER BY q.id ASC
Posted by: Guest on March-19-2020

Code answers related to "how to sort and select data depending on the one which came first in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language