I know that psql
is an option, but I'm looking for an easier text-based interface for PostgreSQL. Something that's similar to what 'tig' is to 'git', or 'phpmyadmin' is to 'mysql' (but using the command line). does any one know something like this?
András Váczi
31.8k13 gold badges103 silver badges152 bronze badges
2 Answers 2
I believe what you're looking for is psql, which is Postgres' command line tool.
-
1I don't think he is, he's looking for something that's more of a curses interface. think, he wants
top
instead ofps
.xenoterracide– xenoterracide2013年09月11日 20:43:53 +00:00Commented Sep 11, 2013 at 20:43 -
No that's not what I'm looking for, sorry for not being clear. I want something that would allow me to explore the DBs without writing SQL statements.TinyProton– TinyProton2013年09月12日 01:33:19 +00:00Commented Sep 12, 2013 at 1:33
-
1you can do this with psql, actually @TinyProton. See the \d commands. Use \? for a list.Chris Travers– Chris Travers2013年09月12日 12:18:41 +00:00Commented Sep 12, 2013 at 12:18
Nearly nine years late (hahaha) but I've just seen this:
-
I loved this one and had such high hopes for it, but it looks like the project isn't very active... There's this other one though that I've been following! github.com/jorgerojas26/lazysqlRuslan– Ruslan2024年07月26日 07:09:20 +00:00Commented Jul 26, 2024 at 7:09
lang-sql
psql
to write queries and see the results, but that's not what I want. I'm looking for an application that allows me to explore the DBs from the terminal without writing SQL statements.psql
cannot accomplish? I also never heard a similar tool, at least not one better thanpsql
(which is the most advanced/powerful prompt tool of all SGDBs I've ever used)...