同一个表中,同一个字段既是主键,又是外键。同一个字段做另外三张表的外键,怎么写?

 我来答
禽兽TA0289
2013-12-17 · 超过55用户采纳过TA的回答
知道答主
回答量:128
采纳率:0%
帮助的人:57.6万
展开全部
<KeyField foreignField="assetIdentifier">assetIdentifier</KeyField></Key><!--加上下面注释的这一段后,就出现了错误:Error generating bean code from file UC_DEVICEFUNCTION.xml: Error in the Bean UC_DEVICEFUNCTION of Solution SMMS: Duplicated key assetIdentifier <Key foreignBean="UC_ENDDEVICEASSET" restrict="true"> <KeyField foreignField="assetIdentifier">assetIdentifier</KeyField></Key><Key foreignBean="UC_METERASSET" restrict="true"> <KeyField foreignField="assetIdentifier">assetIdentifier</KeyField></Key>--><Key foreignBean="UC_FIRMWARE" restrict="true"> <KeyField foreignField="FirmwareId">currentFirmware</KeyField></Key></Keys> 补充: 这个 是 关于 HPSA 里面的 ,新建 Inventory的 xml的时候 需要用到的 补充: 同一个表中多个字段,既做主键又做外键的方法:<Keys><Key pk="true" unique="true"> <Name>assetIdentifierAndEndDeviceFunctionId</Name> <KeyField>assetIdentifier</KeyField> <KeyField>EndDeviceFunctionId</KeyField></Key><Key foreignBean="UC_DEVICEFUNCTION" restrict="true"> <KeyField foreignField="assetIdentifier">assetIdentifier</KeyField></Key><Key foreignBean="UC_DEVICEFUNCTION" restrict="true"> <KeyField foreignField="EndDeviceFunctionId">EndDeviceFunctionId</KeyField></Key></Keys>补充: 同一个表中的同一个字段,既做主键又做外键的方法:<Keys><Key pk="true" foreignBean="UC_COMEQUIPASSET" includeBean="true" restrict="true"> <KeyField foreignField="assetIdentifier">AssetID</KeyField></Key></Keys>补充: 同一个表中一个字段,既做主键又做多个表的外键的方法:在另外三张表里面分别定义assetIdentifier为外键,即分别在UC_ENDDEVICEASSET、UC_COMEQUIPASSET和UC_METERASSE中加上下面这个key<Keys><Key pk="true" foreignBean="UC_DEVICEFUNCTION" includeBean="true" restrict="true">
熊星10010
2019-01-09
知道答主
回答量:10
采纳率:0%
帮助的人:7986
展开全部
create table yuangong(--创建表名
cleld nvarchar(10) primary key,--此字段指定为表的主键
cleName nvarchar(10) not null,--不可以为空
cleSex nvarchar(1) check(cleSex='男' or cleSex='女'),--非男即女
cleAge int check(cleAge<=150),--约束年龄
cleZw nvarchar(10)
)
create table yonghu (--创建表名
cleld nvarchar(10) primary key foreign key references yuangong(cleld),--此字段指定为yonghu表的主键,同时也是yuangong(cleld)的外键,此处注意格式问题。
passwd nvarchar(10)
)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式