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
Post a Comment