okbob/pspg

Feature: Sort multiple columns individually as a sequence of sort steps

0-issue opened this issue · 4 comments

Is it possible to sort multiple columns? With such a feature one would be able to answer questions like: for every unique value in column-x (sorted ascending ↑), what are all values in column-y (sorted descending ↓)?

In the header row, next to the name, there would be special label that indicates that a sort was performed on that column, what the sort order was, and where is it in sequence of sort steps. For instance "land_area ↑2" in header row would suggest that this column "land_area" was sorted ascending (↑), and was the second (2) column to be sorted.

If such a feature is supported, then additionally, a keybinding would allow undo/redo of sorts in the sort sequence.

Sidenote question: what all PostgreSQL datatypes does pspg support for sorting? and are there any expected differences from PostgreSQL's sorting for columns of same datatypes? Is the goal to match the sort functionality to PostgreSQL's sort? If so, perhaps a collection of tests would be good to have.

okbob commented

Thanks for your prompt response. Ideally such a feature would be part of psql, instead of it requiring an external pager. That way we won't need to rely on a external pager implementing PostgreSQL's handling of sorts, and perhaps such an inbuilt pager in psql would just plug into a C library of Psql that sends the real SQL sort queries to database and display the results. You seem quite involved in PostgreSQL development, have you considered merging pspg in psql to enable such advanced functionality?

okbob commented

Ok, thanks a lot for your explanation. Perhaps I can try filing a feature request on usql.