On Thu, 17 Jun 2021, Dennis Lee Bieber wrote:
My naive idea is to use two queries, one selects * from the company table ordered by nunber, the other by name. The UI offers two radiobuttons when viewing the results, one for each sort column.Presuming all the data fits in memory, it may be faster to just define the key structure for Python's internal sort() function than to go back out to the database server, wait for it to gather the desired fields and sort them, then transfer all the data back to your script.
Dennis, That's a possibility. Thanks, Rich -- https://mail.python.org/mailman/listinfo/python-list
