I would like to know if it is possible to make a select in the Sql Server of a table that does not have an index column, but in this select it presents a sequential index column in ascending order. Ex. Table: Letters
Coluna
D
E
S
And making the select from this table, present to me the result:
Indice Coluna
1 D
2 E
3 S
Is it possible? I need to import data from one bank to another.