psql - "Show tables like" in postgresql -
is there way list tables contain keywords in psql?
in other words, there similar command in mysql:
show tables "%test%"
?
just found answer..
\dt *test*
pull tables: 123_test_234, test_234, 123_test etc.
\dt *test
pull tables: 123_test etc.
\dt test*
pull tables: test_234 etc.
not sure if there similar question. if there is, maybe should delete this.
Comments
Post a Comment