多项选择题
Which two statements are true regarding subqueries? ()
A.A subquery can retrieve zero or more rows
B.Only two subqueries can be placed atone level
C.A subquery can be used only in SQL query statements
D.A subquery can appear on either side of a comparison operator
E.There is no limit on the number of subquery levels in the WHERE clause of a SELECT statement
相关考题
-
多项选择题
Whichtwostatementsaretrueregardingsinglerowfunctions?()
A.They accept only a single argument
B.They can be nested only to two levels
C.Arguments can only be column values or constants
D.They always return a single result row for every row of a queried table
E.They can return a data type value different from the one that is referenced -
多项选择题
YouneedtogeneratealistofallcustomerlastnameswiththeircreditlimitsfromtheCUSTOMERStable.Thosecustomerswhodonothaveacreditlimitshouldappearlastinthelist.Whichtwoquerieswouldachievetherequiredresult?()
A.SELECT cust_last_name, cust_credit_limit FROM customers ORDER BY cust_credit_limit DESC
B.SELECT cust_last_name, cust_credit_limit FROM customers ORDER BY cust_credit_limit
C.SELECT cust_last_name, cust_credit_limit FROM customers ORDER BY cust_credit_limit NULLS LAST
D.SELECT cust_last_name, cust_credit_limit FROM customers ORDER BY cust_last_name, cust_credit_limit NULLSLAST -
多项选择题
Wherecansubqueriesbeused?()
A.field names in the SELECT statement
B.the FROM clause in the SELECT statement
C.the HAVING clause in the SELECT statement
D.the GROUP BY clause in the SELECT statement
E.the WHERE clause in only the SELECT statement
F.the WHERE clause in SELECT as well as all DML statements
