首页 > 代码库 > OCP-1Z0-051-题目解析-第27题
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.
A:错误,表名的最大长度为30
C: 错误。default的值能够为NULL
D: 在同一个schema下,表和视图能够重名。错误。表和视图不能够重名
E: 在同一个schema下,表和同义词能够重名,正确
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.
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下。表名能够同样。
正确
OCP-1Z0-051-题目解析-第27题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。