多项选择题
Which two statements are true regarding single row functions?()
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 -
多项选择题
WhichtwostatementsaretrueregardingtheUSINGandONclausesintablejoins?()
A.Both USING and ON clauses can be used for equijoins and nonequijoins
B.Amaximum of one pair of columns can be joined between two tables using the ON clause
C.The ON clause can be used to join tables on columns that have different names but compatible data types
D.The WHERE clause can be used to apply additional conditions in SELECT statements containing the ON or the USING clause
