There are too many tables in a db. how can I only show tables with certain patterns? Or is there a way I can do paging like "| more" in shell command?
There are too many tables in a db. how can I only show tables with certain patterns? Or is there a way I can do paging like "| more" in shell command?
for example:
show tables like 'test%' will filter tables such as "test1,testF,test111,testFoo"
show tables like 'test_' will filter tables such as "test1,testF"