Feature Suggestion: add ability to sort fields in Alpha Order #104
jcouture100
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When you insert columns into a query by dragging the table columns onto the query editor, it inserts columns in the order which they were added to the table. It would be nice to be able to select the field list and have the selected items sorted in alphabetical order. The sort would be via menu/toolbar/context menu item.
Examples:
-- Before: Unsorted fields example (collapsed SQL format)
SELECT FieldC, FieldA, FieldD, FieldB FROM MyTable-- After: Sorted fields
SELECT FieldA, FieldB, FieldC, FieldD FROM MyTable-- Before: Unsorted fields example (expanded SQL format)
-- After: Sorted fields
Beta Was this translation helpful? Give feedback.
All reactions