TYL Asked: 2018-01-24 18:40:31 +0800 CST2018-01-24 18:40:31 +0800 CST 2018-01-24 18:40:31 +0800 CST 如何列出从父表继承的所有表? 772 我有3 tables (janitor, security & manager)哪个继承自user table. 什么查询可用于产生以下结果(列出所有子表的名称)? 谢谢你。加油:) mysql inheritance 1 个回答 Voted Best Answer Edgar Allan Bayron 2018-01-24T19:53:28+08:002018-01-24T19:53:28+08:00 尝试这个: SELECT table_name FROM information_schema.KEY_COLUMN_USAGE WHERE table_schema = 'database_name' AND referenced_table_name = 'user'; 这将列出 table 下的引用表'user'。
尝试这个:
这将列出 table 下的引用表
'user'
。