sql >> Database teknologi >  >> Database Tools >> SSMS

Kombiner udvalgte top 1 SQL-sætninger

En anden mulighed er at bruge WITH BIES klausul

Select top 1 with ties 
       software, auditDate, versionNumber 
 From  table1 
 Where software IN ('software1','software2','software3','software4')
 Order By Row_Number() over (Partition By software Order By auditDate Desc)


  1. Databasens tidszone

  2. Visning af Blob-indhold i phpMyAdmin

  3. Importer CSV-fil til MySQL ved hjælp af phpMyAdmin

  4. Lav en kopi af Live MySQL-databasen med jævne mellemrum