I'm using SQL-Server 2005.
I have table with many columns, rows i select have where clause which makes impossible to use identity as indexer. I want select all these row + indexer row (acting like identity).
example
2 jack
4 thomas
8 james
to
1 2 jack
2 4 thomas
3 8 james
thanks