题目内容

关系模型中3NF是指( )。

A. 满足2NF且不存在非主属性对候选码的传递依赖现象
B. 满足2NF且不存在非主属性对候选码的部分依赖现象
C. 满足2NF且不存在非主属性
D. 满足2NF且不存在组合属性

查看答案
更多问题

函数依赖范围内的最高范式级别为( )

A. 3NF
B. 4NF
C. 5NF
D. BCNF

函数依赖范围内的最高范式级别为( )(2.6)

A. 3NF
B. 4NF
C. 5NF
D. BCNF

查询student表中的所有非空email信息, 以下语句正确的是( )。(2.6)

A. Select email from student where email !=null
B. Select email from student where email not is null
C. Select email from student where email <> null
D. Select email from student where email is not null

现有书目表book,包含字段:价格price (float),类别type(char); 现在查询各个类别的平均价格、类别名称,以下语句正确的是( )。(2.6)

A. select avg(price),type from book group by type
B. select count(price),type from book group by price
C. select avg(price),type from book group by price
D. select count (price),type from book group by type

答案查题题库