Hi Mark,
A relational data set isn't technically sorted unless you sort it. If
you want a specific sorting, issue an SQL select with a sorting sub
clause. In Pro that's done using the "SQL" dialog.
If you want to assign rowids in a descending order to a table, you need
to first sort your _data_ descending, by whatever column you want, and
then update the _query_ with ROWID.
Example:
Select * From YourTable Order By PostCode Desc Into Q1
Update Q1 Set MyID = ROWID
That'll give the highest PostCode the lowest ID.
Best regards / Med venlig hilsen
Lars I. Nielsen
GIS & DB Integrator
GisPro
Mark skrev: