oracle - How to list tables whose names not contain numbers with psql? -


how list tables name not contain number?

i tried along lines of \dt [a-z]* did not succeed.

you want negate [:digit:] character class, e.g.

\dt public.[^[:digit:]]+ 

says "all tables in schema public names composed of characters can except digits"


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

excel - I can't get the attachement of the email PHP -

node.js - Express and Redis - If session exists for this user, don't allow access -