Quickly see the contents of a table in #PostgreSQL
Next time you want to see the contents of a table in Postgres' CLI don't type the whole:
select * from name_of_table;
Just use:
table name_of_table;
h/t Josh Branchaud
TweetNext time you want to see the contents of a table in Postgres' CLI don't type the whole:
select * from name_of_table;
Just use:
table name_of_table;
h/t Josh Branchaud
Tweet