我创建了一个包含主键和外键的表。现在我想知道将我的表元素作为外键引用的表是什么。
例如,student
是一个包含id (primary key), name
元素的表。 standard
是另一个包含class_id (primary key), and stud_id (Foreign key refers student table id field)
的表格。当我将student table和id字段作为输入时,它返回标准表作为输出。请建议我怎样才能实现这个???
答案 0 :(得分:1)
这里是解决问题的链接。
How do I see all foreign keys to a table or column?
mysql innodb: describe table does not show columns references, what does show them?
检查它。答案 1 :(得分:0)
好的,如果您愿意,可以删除最后一行
SELECT standard.ID
FROM student INNER JOIN standard ON student.ID = standard.stud_id
GROUP BY standard.ID;