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

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

python - Django-cities exits with "killed" -

python - How to get a widget position inside it's layout in Kivy? -