Is there is a way. I can save my table in ascending order by id.
I want to create new table from existing table for that I am using. SELECT id,name into newtable from oldtable order by id asc. So it create the table but new table doesnot store in ascending order by id. I want to store the id in ascending order in new table.
SELECT AirlineData2019.[id]
,AirlineData2019.[DestAirportID]
,AirlineData2019.[DestAirportSeqID]
,AirlineData2019.[DestCityMarketID]
,AirlineData2019.[Dest]
,AirlineData2019.[DestCityName]
,AirlineData2019.[DestState]
,AirlineData2019.[DestStateFips]
,AirlineData2019.[DestStateName]
,AirlineData2019.[DestWac]
INTO Destination FROM AirlineData2019 ORDER BY id;
```[![I want to save my data in that way in new table][1]][1]
[1]: https://i.stack.imgur.com/c0h0t.png