Answers for "select row with max id sql server"

SQL
1

sql select row with max date

SELECT t1.*
FROM employees t1
INNER JOIN (
    SELECT id, max(job_start) AS job_start FROM employees GROUP BY id
) t2 ON t1.id = t2.id AND t1.job_start = t2.job_start;
Posted by: Guest on April-22-2021
0

sql server select record with max id

select ID , ProductCatId , ProductCode , Price
  from (
        select ID , ProductCatId , ProductCode , Price, row_number() over (partition by ProductCatId order by ID desc) as rn
         from myTable
        ) as t
  where t.rn = 1
Posted by: Guest on December-17-2020

Code answers related to "select row with max id sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language