我在 Access 2007 中有 2 个这样的表...
Table 1 - tbEmployees Details
FieldName Data Type
PK *ID Autonumber
EmployeeID Number
First Text
.... ...
Table 2 - tbEmployeesQualification
FieldName Data Type
PK *ID Autonumber
CV (attachment) Attachment
Qualification / Certificate (memo box)
Skills (memo box)
我正处于关系的设计阶段。我正在尝试使用上表中的外部联接,因为我想为每个员工附加简历。我尝试了以下方法。将 ID 从 tbEmployees Details 拖到 tbEmployeesQualification 上。然后出现加入属性屏幕...
Left Table - Right Table -
tbEmployees Details tbEmployeesQualification
Left Column - Right Column
ID Qualification / Certificate
我选择了选项 2 - 包括来自 .... 的所有记录,其中连接字段相等。
为了测试这一点,我使用了 Query。当我使用查询向导时,似乎查询显示的结果包括来自 tbEmployees Details 的所有数据和所有数据 tbEmployeesQualification 但
当我使用查询设计时,我收到以下错误...
Cannot join on Memo, OLE, or Hyperlink Object ([tbEmployees Details].ID=[
tbEmployeesQualification].[Qualification/Certificate])
错误是正确的。我知道 ID 具有 Autonumber 作为数据类型和来自 tbEmployeesQualification 的资格/证书作为备忘录数据类型,因此不能使用内部联接。所以我的问题是如何解决这个问题?或者可以通过使用外部连接来解决,还是我需要做一些我没见过的事情?
提前感谢您抽出时间回答我的问题。
编辑 - 我认为外键可能是答案。我刚刚在 tbEmployeesQualification 中添加了数据类型为 Number 的 ID。创建一对多关系,一个是 tbEmployees Details,许多是 tbEmployeesQualification。我会尽快更新。