Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个包含主键和外键的表。现在我想知道将我的表元素作为外键引用的表是什么。
例如,student是一个包含id (primary key), name元素的表。并且standard是另一个包含class_id (primary key), and stud_id (Foreign key refers student table id field). 当我将学生表和 id 字段作为输入时,它会返回标准表作为输出。请建议我如何实现这一目标???
student
id (primary key), name
standard
class_id (primary key), and stud_id (Foreign key refers student table id field)
那么这里是你的问题的解决方案的链接。
如何查看表或列的所有外键?
mysql innodb:描述表不显示列引用,显示它们的是什么?
核实。
好的,缺少一些东西,你没有告诉你是如何实现这一点的,你正在使用什么操作系统,你想用脚本来做吗?如果是这样,什么语言,你使用什么数据库管理系统?让我知道,你的答案就准备好了
好的,就是这样,如果你愿意,你可以删除最后一行
SELECT standard.ID FROM student INNER JOIN standard ON student.ID = standard.stud_id GROUP BY standard.ID;