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

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -