A. UNIQUE B. NOT NULL C. CHECK D. PRIMARY KEY E. FOREIGN KEY
单项选择题In which scenario would TOP N analysis be the best solution? ()
A. You want to identify the most senior employee in the company. B. You want to find the manager supervising the largest number of employees. C. You want to identify the person who makes the highest salary for all employees. D. You want to rank the top three sales representatives who have sold the maximum number of products.
多项选择题Which three are true regarding the use of outer joins? ()
A. You cannot use IN operator in a condition that involves an outerjoin. B. You use (+) on both sides of the WHERE condition to perform an outerjoin. C. You use (*) on both sides of the WHERE condition to perform an outerjoin. D. You use an outerjoin to see only the rows that do not meet the join condition. E. In the WHERE condition, you use (+) following the name of the column in the table without matching rows, to perform an outerjoin. F. You cannot link a condition that is involved in an outerjoin to another condition by using the OR operator.
单项选择题Which statement creates a new user? ()
A. CREATIVE USER susan; B. CREATIVE OR REPLACE USER susan; C. CREATE NEW USER susan DEFAULT D. CREATE USER susan IDENTIFIED BY blue; E. CREATE NEW USER susan IDENTIFIED BY blue; F. CREATE OR REPLACE USER susan IDENTIFIED BY blue;
单项选择题You need to change the definition of an existing table. The COMMERCIALS table needs its DESCRIPTION column changed to hold varying length characters up to 2000 bytes. The column can currently hold 1000 bytes per value. The table contains 20000 rows. Which statement is valid?()
A. ALTER TABLE commercials MODIFY (description CHAR2(2000)); B. ALTER TABLE commercials CHANGE (description CHAR2(2000)); C. ALTER TABLE commercials CHANGE (description VARCHAR2 (2000)); D. ALTER TABLE commercials MODIFY (description VARCHAR2 (2000)); E. You cannot increase the size of a column if the table has rows.
单项选择题What does the TRUNCATE statement do?()
A. Removes the table B. Removes all rows from a table C. Shortens the table to 10 rows D. Removes all columns from a table E. Removes foreign keys from a table