标签: mysql foreign-keys
有人知道按引用表顺序按"show tables"或"information_schema"列出所有表的查询是什么?
"show tables"
"information_schema"
喜欢:
SELECT * FROM `TABLES` WHERE `TABLE_SCHEMA` LIKE 'db_name' ORDER BY REFERENCED_TABLE
因为表格按字母顺序列出。我希望首先列出的是mother_tables,然后是child_tables。