多项选择题
Which two statements about creating constraints are true? ()
A. Constraint names must start with SYS_C
B. All constraints must be defines at the column level
C. Constraints can be created after the table is created
D. Constraints can be created at the same time the table is created
E. Information about constraints is found in the VIEW_CONSTRAINTS dictionary view
相关考题
-
单项选择题
The CUSTOMERS table has these columns: Which statement finds the rows in the CUSTOMERS table that do not have a postal code?()
A. SELECT customer_id, customer_name FROM customers WHERE postal_code CONTAINS NULL;
B. SELECT customer_id, customer_name FROM customers WHERE postal_code = '________';
C. SELECT customer_id, customer_name FROM customers WHERE postal_code IS NULL;
D. SELECT customer_id, customer_name FROM customers WHERE postal code IS NVL;
E. SELECT customer_id, customer_name FROM customers WHERE postal_code = NULL; -
单项选择题
You are granted the CREATE VIEW privilege. What does this allow you to do?()
A. Create a table view.
B. Create a view in any schema.
C. Create a view in your schema.
D. Create a sequence view in any schema.
E. Create a view that is accessible by everyone.
F. Create a view only of it is based on tables that you created. -
多项选择题
Evaluate the SQL statement DROP TABLE DEPT: Which four statements are true of the SQL statement?()
A. You cannot roll back this statement.
B. All pending transactions are committed.
C. All views based on the DEPT table are deleted.
D. All indexes based on the DEPT table are dropped.
E. All data in the table is deleted, and the table structure is also deleted.
F. All data in the table is deleted, but the structure of the table is retained.
G. All synonyms based on the DEPT table are deleted.
