网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
____
A.Primary Key NOTNULL
B.PIimary,Key
C.Foreign Key
D.Candidate Key
A.
B.
C.
D.
参考答案
更多 “ ____A.Primary Key NOTNULLB.PIimary,KeyC.Foreign KeyD.Candidate KeyA.B.C.D. ” 相关考题
考题
In a public-key cryptosystem,(71)encrypted with the public key can only be deciphered with the private key from the same(72). Conversely,(71)encrypted with the private key can be decrypted only with the public key. Users can make their public keys(73)available or place them at a key distribution center or others to access. However, the private key must be(74)safe. In public-key systems there's no(75)to find a safe channel for communicating a shared secret key.A.binarytextB.hypertextC.plaintextD.supertext
考题
Which statement is true regarding a session key in the Diffie-Hellman key-exchange process?()
A. A session key value is exchanged across the network.B. A session key never passes across the network.C. A session key is used as the key for asymmetric data encryption.D. A session key is used as the key for symmetric data encryption.
考题
给定员工关系EMP(EmpID,Ename,sex,age,tel,DepID),其属性含义分别为:员工号、姓名、性别、年龄、电话、部门号;部门关系DEP(DepID,Dname,Dtel,DEmpID),其属性含义分别为:部门号、部门名、电话,负责人号。若要求DepID参照部门关系DEP的主码DepID,则可以在定义EMP时用(7)进行约束。若要查询开发部的负责人姓名、年龄,则正确的关系代数表达式为(8)。A.Primary Key(DepID)On DEP(DepID)B.Primary Key(DepID)On EMP(DepID)C.Foreign Key(DepID)References DEP(DepID)D.Foreign Key(DepID)References EMP(DepID)
考题
某数据库中有供应商关系S和零件关系P,其中:供应商关系模式S(Sno,Sname,Szip,City)中的属性分别表示:供应商代码、供应商名、邮编、供应商所在城市;零件关系模式P(Pno,Pname,Color,Weight, City)中的属性分别表示:零件号、零件名、颜色、重量、产地。要求一个供应商可以供应多种零件,而一种零件可以由多个供应商供应。请将以下(56)空缺处的SQL语句补充完整。A.PRIMARY KEY(Sno)REFERENCE S(Sno),FOREIGN KEY(Pno)REFERENCES P(Pno)B.FOREIGN KEY(Sno)REFERENCE S(Sno),PRIMARY KEY(Pno)REFERENCES P(Pno)C.FOREIGN KEY(Sno)REFERENCE S(Sno),FOREIGN KEY(Pno)REFERENCES P(Pno)D.PRIMARY KEY(Sno)REFERENCE S(Sno),PRIMARY KEY(Pno)REFERENCES P(Pno)
考题
_____A.PRIMARY KEY (部门号) NOT NULL UNIQUEB.PRIMARY KEY (部门名) UNIQUEC.FOREIGN KEY (负责人) REFERENCES 员工 (姓名)D.FOREIGN KEY (负责人) REFERENCES 员工 (员工号)A.B.C.D.
考题
在SQL语言中,______子句能够实现关系参照性规则。A.PRIMARY KEYB.NO TNULLC.FOREIGN KEYD.FOREIGN KEY...REFERENCES...
考题
The ratio of output response to a specified change in the input is known as ______.A.primary feedbackB.sensitivityC.deviationD.dead band
考题
某医院有科室关系D(科室号,科室名,负责人,联系电话),其中:"科室号"唯一标识关系D中的每一个元组。住院部设有病人关系R(住院号,姓名,性别,科室号,家庭住址),其中,"住院号"唯一标识关系R中的每一个元组,"性别"的取值只能为M或F,要求科室号参照科室关系D中的科室号。创建R关系的sQL语句如下:
CREATE TABLE R(住院号CHAR58 ( ),姓名CHAR59,性别CHAR60 ( ),科室号cHAR61 (请作答此空),家庭住址CHAR62);A.PRIMARY KEY NOT NULL
B.PRIMARY KEY UNIQUE
C.FOREIGN KEY REFERENCES D(科室号)
D.FOREIGN KEY REFERENCES D(科室名)
考题
某企业信息管理系统的部分关系模式为:部门(部门号,部门名,负责人,电话)、职工(职工号,职工姓名,部门号,职位,住址,联系电话)。部门关系中的部门名为非空值,负责人参照职工关系的职工号,请将下述SQL语句的空缺部分补充完整。CREATE TABLE 部门(部门号 CHAR(4) PRIMARY KEY, 部门名 CHAR(20)( ), 负责人 CHAR(6), 电话 CHAR(15), (请作答此空));A.PRIMARY KEY(部门号)NOT NULL UNIQUE
B.PRIMARY KEY(部门名)UNIQUE
C.FOREIGN KEY(负责人)REFERENCES 职工(职工号)
D.FOREIGN KEY(负责人)REFERENCES 职工(职工姓名)
考题
某医院住院部信息系统中有病人表R(住院号,姓名,性别,科室号,病房,家庭住址),“住院号”唯一标识表R中的每一个元组,“性别”的取值只能为M或F,“家庭住址”包括省、市、街道、邮编,要求科室号参照科室关系D中的科室号;科室关系D(科室号,科室名,负责人,联系电话),“科室号”唯一标识关系D中的每一个元组。a.创建关系R的SQL语句如下:CREATE TABLE R(住院号CHAR(8)( ),姓名CHAR(10),性别CHAR(1)( ),科室号CHAR(4),病房CHAR(4),家庭住址ADDR,//ADDR为用户定义的类(请作答此空));b.表R中复合属性是( )。A.PRIMARY KEY(科室号)NOT NULL UNIQUE
B.PRIMARY KEY(科室名)UNIQUE
C.FOREIGN KEY(科室号)REFERENCES D(科室号)
D.FOREIGN KEY(科室号)REFERENCES D(科室名)
考题
给定员工关系EMP(EmpID,Ename,sex,age,tel,DepID),其属性含义分别为:员工号、姓名、性别、年龄、电话、部门号;部门关系DEP(DepID,Dname,Dtel,DEmpID),其属性含义分别为:部门号、部门名、电话,负责人号。若要求DepID参照部门关系DEP的主码DepID,则可以在定义EMP时用(请作答此空)进行约束。若要查询开发部的负责人姓名、年龄,则正确的关系代数表达式为( )。A.Primary Key(DepID)On DEP(DepID)
B.Primary Key(DepID)On EMP(DepID)
C.Foreign Key(DepID)References DEP(DepID)
D.Foreign Key(DepID)References EMP(DepID)
考题
键盘事件的执行顺序是()。AKey Press、Key Down、Key UpBKey Down、Key Press、Key UpCKey Up、Key Down、Key PressDKey Up、Key Press、Key Down
考题
By default, what type of SSH server key is generated by Cisco NX-OS Software?()A、 DSA key generated with 512 bitsB、 RSA key generated with 768 bitsC、 RSA key generated with 1024 bitsD、 DSA key generated with 1024 bitsE、 RSA key generated with 2048 bits
考题
PKI是()。A、Private Key InfrastructureB、Public Key InstituteC、Public Key Infrastructure公钥基础设施D、Private Key Institute
考题
键盘事件的执行顺序是()。A、Key Press、Key Down、Key UpB、Key Down、Key Press、Key UpC、Key Up、Key Down、Key PressD、Key Up、Key Press、Key Down
考题
判断某个key是否在字典d中存在,以下做法正确且严谨的是:()A、’key’ind.keys()B、d.get(’key’)isnotNoneC、hasattr(d,’key’)D、’key’ind
考题
public class Key { private long id1; private long 1d2; // class Key methods } A programmer is developing a class Key, that will be used as a key in a standard java.util.HashMap. Which two methods should be overridden to assure that Key works correctly as a key?()A、 public int hashCode()B、 public boolean equals(Key k)C、 public int compareTo(Object o)D、 public boolean equals(Object o)E、 public boolean compareTo(Key k)
考题
PKI的全称是()。A、Private Key IntrusionB、Public Key IntrusionC、Private Key InfrastructureD、Public Key Infrastructure
考题
PKI是()。A、Private Key lnfrastructureB、Public Key lnstituteC、Public Key lnfrastructureD、Private Key lnstitute
考题
单选题键盘事件的执行顺序是()。A
Key Press、Key Down、Key UpB
Key Down、Key Press、Key UpC
Key Up、Key Down、Key PressD
Key Up、Key Press、Key Down
考题
单选题Which statement is true regarding a session key in the Diffie-Hellman key-exchange process?()A
A session key value is exchanged across the network.B
A session key never passes across the network.C
A session key is used as the key for asymmetric data encryption.D
A session key is used as the key for symmetric data encryption.
考题
单选题By default, what type of SSH server key is generated by Cisco NX-OS Software?()A
DSA key generated with 512 bitsB
RSA key generated with 768 bitsC
RSA key generated with 1024 bitsD
DSA key generated with 1024 bitsE
RSA key generated with 2048 bits
热门标签
最新试卷