24
ROW_NUMBER () dans MySQL
Existe-t-il un bon moyen dans MySQL pour répliquer la fonction SQL Server ROW_NUMBER()? Par exemple: SELECT col1, col2, ROW_NUMBER() OVER (PARTITION BY col1, col2 ORDER BY col3 DESC) AS intRow FROM Table1 Ensuite, je pourrais, par exemple, ajouter une condition à limiter intRowà 1 pour obtenir une seule ligne avec …