Search code examples
postgresqlrow-numberrownum

Rownum in postgresql


Is there any way to simulate rownum in postgresql ?


Solution

  • Postgresql > 8.4

    SELECT 
        row_number() OVER (ORDER BY col1) AS i, 
        e.col1, 
        e.col2, 
        ... 
    FROM ...