There are many useful shortcuts in psql console like \d or \l.
I wondering is there one for SELECT * FROM table_name?
I use this query often for learning purposes so it would be quite helpful not to have to write select * from ... all the time.
There is a "shortcut" for SELECT * FROM in standard SQL, so you can use it in psql:
TABLE tablename;
This syntax shorthand can only be used with a limited range of clauses. The manual:
It can be used as a top-level command or as a space-saving syntax variant in parts of complex queries. Only the
WITH,UNION,INTERSECT,EXCEPT,ORDER BY,LIMIT,OFFSET,FETCHandFORlocking clauses can be used withTABLE; theWHEREclause and any form of aggregation cannot be used.
来源:https://stackoverflow.com/questions/30275979/is-there-a-shortcut-for-select-from