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

    27. Which two statements are true regarding tables? (Choose two.) 
    A. A table name can be of any length. 
    B. A table can have any number of columns. 
    C. A column that has a DEFAULT value cannot store null values. 
    D. A table and a view can have the same name in the same schema. 
    E. A table and a synonym can have the same name in the same schema. 

    F. The same table name can be used in different schemas in the same database. 


    Answer: EF

    A:错误,表名的最大长度为30

    B:错误。字段最多为1000个

    能够測试下

    SQL> create table tt(id int);
    
    表已创建。
    
    SQL> edit
    已写入 file afiedt.buf
    
      1  declare
      2  v_string varchar2(100);
      3  begin
      4  for i in 1..1000 loop
      5  v_string := 'alter table tt add col'||i||' int' ;
      6  execute immediate v_string;
      7  end loop ;
      8* end;
    SQL> /
    declare
    *
    第 1 行出现错误:
    ORA-01792: 表或视图中的最大列数为 1000
    ORA-06512: 在 line 6

    C: 错误。default的值能够为NULL
    D: 在同一个schema下,表和视图能够重名。错误。表和视图不能够重名
    E: 在同一个schema下,表和同义词能够重名,正确

    F:在不同的schema下。表名能够同样。

    正确


  • 相关阅读:
    SAP 会计科目
    固定资产采购
    MIRO 注意点
    移动类型与会计科目的字段选择
    特征、分类的命名规则
    采购进项税、 含税价转不含税价
    换手率
    内盘、外盘
    SAP 文本增强
    Intellj IDEA 问题集锦
  • 原文地址:https://www.cnblogs.com/mfmdaoyou/p/7040156.html
Copyright © 2011-2022 走看看