一、原题
二、题目翻译
三、题目解析
Which view should a user query to display the columns associated with the constraints on a table
owned by the user?
A. USER_CONSTRAINTS
B. USER_OBJECTS
C. ALL_CONSTRAINTS
D. USER_CONS_COLUMNS
E. USER_COLUMNS
答案: D
owned by the user?
A. USER_CONSTRAINTS
B. USER_OBJECTS
C. ALL_CONSTRAINTS
D. USER_CONS_COLUMNS
E. USER_COLUMNS
答案: D
二、题目翻译
对于用户自己建的表,哪一个视图是用来显示表中列的约束的信息?
三、题目解析
USER_CONSTRAINTS describes all constraint definitions on tables owned by the current user.
描述当前用户拥有的所有的表的约束信息。
USER_OBJECTS describes all objects owned by the current user.
描述当前用户拥有的所有的对象(包括表、视图、索引等等)。
ALL_CONSTRAINTS describes constraint definitions on tables accessible to the current user.
描述当前用户有权限的表的约束信息。
USER_CONS_COLUMNS describes columns that are owned by the current user and that are specified in constraint definitions.
描述当前用户拥有的所有的表的约束信息。
USER_OBJECTS describes all objects owned by the current user.
描述当前用户拥有的所有的对象(包括表、视图、索引等等)。
ALL_CONSTRAINTS describes constraint definitions on tables accessible to the current user.
描述当前用户有权限的表的约束信息。
USER_CONS_COLUMNS describes columns that are owned by the current user and that are specified in constraint definitions.
描述当前用户所建的列的约束信息。
USER_COLUMNS 这个视图不存在。
USER_COLUMNS 这个视图不存在。