I've run into this a few times and have an bad work-around but wanted to see if there's a better way.
Often when I run queries & views I need to know the sequences of the returned values.
For instance if I run a query like "select Custid from tarcustomer order by totalSales desc" I'd like a return with the number sequence like:
1 Microsoft
2 Intel
3 Coke
.
.
515 Fred's Diner
What I've been doing is selecting the value into temptable and using an identifier field to count the returns and then re-running a select from that table (duck tape approach).
Often when I run queries & views I need to know the sequences of the returned values.
For instance if I run a query like "select Custid from tarcustomer order by totalSales desc" I'd like a return with the number sequence like:
1 Microsoft
2 Intel
3 Coke
.
.
515 Fred's Diner
What I've been doing is selecting the value into temptable and using an identifier field to count the returns and then re-running a select from that table (duck tape approach).