views:

30

answers:

2

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

A: 

You don't have to use show tables, you can also query information_schema.TABLES using any filter.

a1ex07
+1  A: 
show tables like 'pattern';
ar