Start session psql
List databases \l
Create database createdb some_database
Choose DB to work with \connect flex_development
List all the tables \dt
Get columns info for a table \d+ admin_users
Run sql commands direct in the command line, eg select id, email, role from admin_users;
Exit session \q