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