select row_number() over (order by <field> nulls last) as rownum, *
from foo_tbl
order by <field>
यदि आदेश आवश्यक नहीं है, तो इस उत्तर को सरल भी किया जा सकता है:
select row_number() over(), * -- notice: no fields are needed
from foo_tbl
एसक्यूएल फिडल प्रूफ ऑफ कॉन्सेप्ट