【简答题】Title: The Loss of Traditional Culture Time limit: 40 minutes Your composition should be based on the OUTLINE below and you should start with the given opening sentence: 'If action is not taken, a nat...
【多选题】You need to generate a list of all customer last names with their credit limits from the CUSTOMERS table. Those customers who do not have a credit limit should appear last in the list. Which two queri...
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