A. UNIQUE B. NOT NULL C. CHECK D. PRIMARY KEY E. FOREIGN KEY
多项选择题In which two cases would you use an outer join? ()
A. The tables being joined have NOT NULL columns. B. The tables being joined have only matched data. C. The columns being joined have NULL values. D. The tables being joined have only unmatched data. E. The tables being joined have both matched and unmatched data. F. Only when the tables have a primary key/foreign key relationship.
单项选择题The PRODUCTS table has these columns: PRODUCT_ID NUMBER(4) PRODUCT_NAME VARCHAR2(45) PRICE NUMBER(8,2) Evaluate this SQL statement: SELECT * FROM PRODUCTS ORDER BY price, product _ name; What is true about the SQL statement? ()
A. The results are not sorted. B. The results are sorted numerically. C. The results are sorted alphabetically. D. The results are sorted numerically and then alphabetically.
单项选择题Which best describes an inline view? ()
A. a schema object B. a subquery that can contain an ORDER BY clause C. another name for a view that contains group functions D. a subquery that is part of the FROM clause of another query
单项选择题The DBA issues this SQL command: CREATE USER scott IDENTIFIED by tiger; What privileges does the user Scott have at this point?()
A. no privileges B. only the SELECT privilege C. only the CONNECT privilege D. all the privileges of a default user
多项选择题Which two tasks can you perform using only the TO_CHAR function? ()
A. convert 10 to 'TEN' B. convert '10' to 10 C. convert 10 to '10' D. convert 'TEN' to 10 E. convert a date to a character expression F. convert a character expression to a date