zoukankan      html  css  js  c++  java
  • OCP-1Z0-051-题目解析-第29题

    29. Which two statements are true regarding constraints? (Choose two.) 
    A. A foreign key cannot contain NULL values. 
    B. The column with a  UNIQUE  constraint can store NULLS . 
    C. A constraint is enforced only for an INSERT operation on a table. 
    D. You can have more than one column in a table as part of a primary key.
     
    Answer: BD 


    A:外键约束不能包括空值(错误,仅仅有非空约束和主键约束不能包括空值)。
    B:唯一约束的字段能够存储空值(正确,由于NULL<>NULL)
    C:一个表上的约束仅仅对插入操作起作用(错误,Update、delete相同起作用)。


    D:能够在一个表中定义超过一个字段作为主键(正确,能够同一时候定义多个字段共同作为主键,如CONSTRAINT it_pk PRIMARY KEY (ord_no,item_no))

  • 相关阅读:
    [Heoi2013]Alo
    10.24 考试
    第八周作业
    第七周作业
    第六周作业
    第五周作业
    第四周作业
    求最大值及其下标
    查找整数
    抓老鼠啊~亏了还是赚了?
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/5067965.html
Copyright © 2011-2022 走看看