2
How do I resolve the situation below:
I have a table where the data were entered in the following order:
INSERT INTO teste(Nome) VALUES('C')
INSERT INTO teste(Nome) VALUES('D')
INSERT INTO teste(Nome) VALUES('B')
INSERT INTO teste(Nome) VALUES('A')
In this table already filled I will create a field Alphanumeric identity which you do not have. When you create this column, SQL itself will fill the alphanumeric column. Will it number as per the order that was inserted or will it pick random order to apply the Identity?
I needed that result:
ID Nome 1 C 2 D 3 B 4 A
Good answer, well grounded
– Sorack