tempo1
Programmer
- Feb 20, 2007
- 118
Hi,
I'd like to see my table accompanied by an ordinal number in each row.
as follows:
1 myname
2 hisname
3 anothername
4
.
.
100 etc..
the code should be something like:
Is there a function to replace the "ordinal()" i wrote?
thanks.
I'd like to see my table accompanied by an ordinal number in each row.
as follows:
1 myname
2 hisname
3 anothername
4
.
.
100 etc..
the code should be something like:
Code:
select ordinal(), name
from
table1
thanks.