Good morning,
I have a table ID (primary key) and
and I want to do a select of these values, order by ID ASC, and see the position of each one in this order, something like this:
I have a table ID (primary key) and
Code:
ID
--
FEASSDDE
RDSAAASE
NEESSDSD
AEIERIEIEE
and I want to do a select of these values, order by ID ASC, and see the position of each one in this order, something like this:
Code:
POS ID
--------------------
1 AEIERIEIEE
2 FEASSDDE
3 NEESSDSD
4 RDSAAASE