网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
多选题
在设计数据库时,要充分考虑数据的完整性或准确性。下面关于primary key和unique的描述错误的是()
A

设为unique的列的值是不能重复的,用来唯一区别unique列的值

B

primary key列不可以有null值,而unique列是可以有null的

C

primary key列和unique列都不可以有null值

D

primary key用来在表中设置主键,主键列的值是可以重复的,用来唯一标识表中的每一条记录


参考答案

参考解析
解析: 定义了UNIQUE约束的字段中不能包含重复值,可以为一个或多个字段定义UNIQUE约束。因此,UNIQUE即可以在字段级也可以在表级定义,在UNIQUED约束的字段上可以包含空值。ORACLE自动会为具有PRIMARY KEY约束的字段(主码字段)建立一个唯一索引和一个NOT NULL约束,定义PRIMARY KEY约束时可以为它的索引。
更多 “多选题在设计数据库时,要充分考虑数据的完整性或准确性。下面关于primary key和unique的描述错误的是()A设为unique的列的值是不能重复的,用来唯一区别unique列的值Bprimary key列不可以有null值,而unique列是可以有null的Cprimary key列和unique列都不可以有null值Dprimary key用来在表中设置主键,主键列的值是可以重复的,用来唯一标识表中的每一条记录” 相关考题
考题 在进行数据库概念结构设计时,要充分考虑所使用的数据库管理系统。() 此题为判断题(对,错)。

考题 在SQL在CREATE TABLE命令中用于定义满足实体完整性的主索引的短语是 A) DEFAULT B) UNIQUE C)CHECK D) PRIMARY KEY

考题 下列关于数据库表和自由表的描述中错误的是( )。 A.数据库表和自由表都可以用表设计器来建立S 下列关于数据库表和自由表的描述中错误的是( )。A.数据库表和自由表都可以用表设计器来建立B.数据库表和自由表都支持表间联系和参照完整性C.自由表可以添加到数据库中成为数据库表D.数据库表可以从数据库中移出成为自由表

考题 SQL语言中实现候选码约束的语句是(24)。A.用Candidate Key指定B.用Primary Key指定C.用UNIQUE NOT NULL约束指定D.用UNIQUE约束指定

考题 When defining a referential constraint between the parent table T2 and the dependent table T1, which of the following is true?() A.The list of column names in the FOREIGN KEY clause can be a subset of the list of column names in the primary key of T2 or a UNIQUE constraint that exists on T2.B.The list of column names in the FOREIGN KEY clause can be a subset of the list of column names in the primary key of T1 or a UNIQUE constraint that exists on T1.C.The list of column names in the FOREIGN KEY clause must be identical to the list of column names in the primary key of T2 or a UNIQUE constraint that exists on T2.D.The list of column names in the FOREIGN KEY clause must be identical to the list of column names in the primary key of T1 or a UNIQUE constraint that exists on T1.

考题 68 、公司网络采用单域结构进行管理,域中有一台数据库服务器,为存贮公司数据,建立了名为information的数据库。管理员用以下语句建立了一个新表。CREATE TABLE emp_info(emp_ID int PRIMARY KEY,emp_Name varchar(50) UNIQUE,emp_Address varchar(50) UNIQUE)系统在该表上自动创建()索引。A 复合B 惟一C 聚集D 非聚集

考题 以下关于数据库逻辑设计叙述错误的是______。A) 数据库逻辑设计是面向机器世界的B) 这个阶段将按照数据库管理系统支持的数据模型来组织和存储数据C) 目标是得到实际的数据库管理系统可处理的数据库模式,并做到数据结构合理D) 包括定义和描述数据库的局部逻辑结构、数据之间的关系、数据完整性及安全性要求等A.B.C.D.

考题 在数据表定义时设置Primary key是数据库的实体完整性控制。

考题 以下关于索引的哪个说法是对的()A、创建PRIMARY KEY约束条件时,会自动创建一个索引B、创建PRIMARY KEY约束条件时,必须由数据库管理员创建索引C、从不为唯一约束条件创建索引D、创建PRIMARY KEY约束条件以前,不能创建索引

考题 下列关于完整性约束的叙述中,正确的是()。A、一个表可以有多个PRIMARY KEY约束B、在任何情况下PRIMARY KEY约束都可以被删除C、一个表可以有多个UNIQUE约束D、使用NULL/NOT NULL可以设定某列的值允许为空值或不允许为空值

考题 在设计数据库时,要充分考虑数据的完整性或准确性。下面关于primary key和unique的描述错误的是()A、设为unique的列的值是不能重复的,用来唯一区别unique列的值B、primary key列不可以有null值,而unique列是可以有null的C、primary key列和unique列都不可以有null值D、primary key用来在表中设置主键,主键列的值是可以重复的,用来唯一标识表中的每一条记录

考题 在Oracle数据库中,设计表时为增强列的唯一性,哪三项是合适的()。A、UNIQUE约束B、Primary keyC、Foreign keyD、NOT NULL约束E、Unique索引

考题 在数据表设计时,UNIQUE与PRIMAR YKEY两者的区别是()A、UNIQUE要求数据表中至少存在一行数据,必须在建表后创建,而PRIMARY KEY无该限制B、UNIQUE允许空值存在,而PRIMARYKEY不允许C、创建UNIQUE后,该数据行允许被修改,而PRIMARYKEY则不允许D、UNIQUE列不能创建外键,而PRIMARYKEY可以创建外键

考题 假定有一张表员工表employee,其中一性别字段sex,该列只能存入’男’或’女’。为了维护数据的完整性,在设计数据库时,最好对sex字段添加约束,请问应该添加什么约束()A、primary keyB、checkC、defaultD、unique

考题 SQL SERVER数据库中,UNIQUE约束与PRIMARY KEY约束之间的区别是()A、UNIQUE约束要求数据库表中至少存在一行数据,因此必须在创建数据库表之后才能创建,而PRIMARY KEY约束无此限制B、UNIQUE约束允许存在空值,而PRIMARY KEY约束不允许存在空值C、创建UNIQUE约束之后,该数据行允许被更改,而PRIMARY KEY约束的数据行,不允许更改D、UNIQUE约束列不能创建外键,而PRIMAR YKEY约束列可以创建外键引用

考题 下面关于文件组描述错误的是()。A、每个数据库中都有一个文件组作为默认文件组运行B、事务日志文件可以存在于任意文件组中C、主数据文件默认在PRIMARY文件组D、文件组是为了更好地实现数据库文件组织

考题 Which two statements are true about the primary key constraint in a table? ()A、It is not possible to disable the primary key constraint.B、It is possible to have more than one primary key constraint in a single table.C、The primary key constraint can be referred by only one foreign key constraint.D、The primary key constraint can be imposed by combining more than one column.E、The non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.

考题 Which two statements are true about constraints? ()A、The UNIQUE constraint does not permit a null value for the column.B、A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.C、The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.D、The NOT NULL constraint ensures that null values are not permitted for the column.

考题 单选题下面关于文件组描述错误的是()。A 每个数据库中都有一个文件组作为默认文件组运行B 事务日志文件可以存在于任意文件组中C 主数据文件默认在PRIMARY文件组D 文件组是为了更好地实现数据库文件组织

考题 判断题在数据表定义时设置Primary key是数据库的实体完整性控制。A 对B 错

考题 单选题SQL SERVER数据库中,UNIQUE约束与PRIMARY KEY约束之间的区别是()A UNIQUE约束要求数据库表中至少存在一行数据,因此必须在创建数据库表之后才能创建,而PRIMARY KEY约束无此限制B UNIQUE约束允许存在空值,而PRIMARY KEY约束不允许存在空值C 创建UNIQUE约束之后,该数据行允许被更改,而PRIMARY KEY约束的数据行,不允许更改D UNIQUE约束列不能创建外键,而PRIMAR YKEY约束列可以创建外键引用

考题 多选题下列关于完整性约束的叙述中,正确的是()。A一个表可以有多个PRIMARY KEY约束B在任何情况下PRIMARY KEY约束都可以被删除C一个表可以有多个UNIQUE约束D使用NULL/NOT NULL可以设定某列的值允许为空值或不允许为空值

考题 多选题Which two statements are true about constraints? ()AThe UNIQUE constraint does not permit a null value for the column.BA UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.CThe PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.DThe NOT NULL constraint ensures that null values are not permitted for the column.

考题 单选题When defining a referential constraint between the parent table T2 and the dependent table T1, which of the following is true?()A The list of column names in the FOREIGN KEY clause can be a subset of the list of column names in the primary key of T2 or a UNIQUE constraint that exists on T2.B The list of column names in the FOREIGN KEY clause can be a subset of the list of column names in the primary key of T1 or a UNIQUE constraint that exists on T1.C The list of column names in the FOREIGN KEY clause must be identical to the list of column names in the primary key of T2 or a UNIQUE constraint that exists on T2.D The list of column names in the FOREIGN KEY clause must be identical to the list of column names in the primary key of T1 or a UNIQUE constraint that exists on T1.

考题 多选题Which two statements are true about the primary key constraint in a table? ()AIt is not possible to disable the primary key constraint.BIt is possible to have more than one primary key constraint in a single table.CThe primary key constraint can be referred by only one foreign key constraint.DThe primary key constraint can be imposed by combining more than one column.EThe non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.

考题 数据库中现有一张成绩表,为了限制成绩的输入范围,应该使用()约束。 (1.0分) [单选.] A. foreign key B. unique C. check D. primary key

考题 数据库中,以下关于规范设计的描述正确的是() (1.0分) [多选] A. 规范设计的主要目的是消除数据冗余 B. 规范设计往往会增加数据库的性能 C. 设计数据库时,规范化程度越高越好 D. 在规范化数据库时,易于维护数据库的完整性 E. 在设计数据库时,固化程度越高越好