I have a table that has 200 records. The columns in the table are
Client_id, Name, age, dob
sample data:
Now I have a select statement that needs to generate sequential number but not from the table.
So my select statement is:
select row_number, client_id, name from #temp1....
I don't want to get the number from the #temp1 table rather I want to generate dynamically on the fly.
any help?!
