Postgresql – Postgres Client – save table sorting

clientpostgresqlsorting

Is there a Postgres client (for Windows) that can save customized sorting when viewing tables? Obviously I could write and save a query for this, but perhaps there's a client that can do this for me. I know MS Access can do this (via ODBC), but I'd prefer a better client.

Best Answer

Why not create a VIEW? The upside is that it is client independent.

Related Question