本文介绍了连接ms-access数据库从1个表到另一个表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的,

我通过vb在ms中访问了1个大学表,现在我已经创建了另一个表

学生表我希望无论输入什么数据在大学表中也应该出现在学生表栏中。

Dear all,
I have made 1 college table in ms access through vb,now I have made another table
Of student table I want that whatever data i enter in college table should also appear in student table column.

推荐答案

SELECT *
FROM College c
INNER JOIN Student s
ON s.CollegeId = c.CollegeId



因此数据单独存储在两个表中,但在查询时将它们组合起来。


So the data is stored separately in both tables but when querying you combine them.


这篇关于连接ms-access数据库从1个表到另一个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 20:03