2017-10-10 43 views

回答

5

你可以嘗試這樣的事情,

SELECT table_name, table_type, ENGINE 
     FROM information_schema.tables 
     WHERE table_schema = 'your schema name' AND table_name REGEXP '[[:digit:]]$'AND table_name LIKE 'bl_pelanggan%' 
     ORDER BY table_name; 
+0

它的工作!但我想它會列出以數字結尾的所有表格,如何僅過濾以「bl_pelanggan」開頭的表格? –

+1

'AND table_name LIKE'bl_pelanggan%'' – bato3

+0

非常感謝rahulsm @ bato3,這個方法對我來說比其他答案更方便。 –

1
SHOW TABLES LIKE 'bl_pelanggan____' 
+0

這對'bl_pelanggan_abc'有效。 (4字母sufix) – bato3

+0

真的很簡單...但我同意@ bato3評論 –

1

這也應該是可能的:

show tables from <your_schema_name> where tables_in_<your_schema_name> like "bl_pelanggan201%"; 
相關問題