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

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

Error while updating a record in APEX screen -

c++ - In an add-in in Excel, written in C(++), how does one get the name of the function which called into the addin? -