mysql> SHOW TABLES like \'cms\'; +-------------------------+ | Tables_in_tianyan (cms) | +-------------------------+ | cms | +------------------------
You take table list using the below code
select TABLE_NAME from information_schema.TABLES where TABLE_SCHEMA = 'database_name'
Hope it will help you.