Multiple Choice
Contents of the CUSTOMERS table
Note: The ST column name is truncated,this represents the STATE column.
-Based upon the contents of the CUSTOMERS table,which of the following will display the shipping location as:
City,State Zip
A) SELECT INITCAP(CONCAT(city,CONCAT(',',CONCAT(state,
CONCAT(' ',zip) ) ) ) )
FROM customers;
B) SELECT CONCAT(city,CONCAT(',',CONCAT(state,
CONCAT(' ',CONCAT(zip) ) ) ) )
FROM customers;
C) SELECT INITCAP(CONCAT(city,',',state,' ',zip) )
FROM customers;
D) none of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q46: Single-row functions return one row of results
Q63: Which of the following functions can be
Q64: Which of the following format argument elements
Q65: Which of the following keywords will return
Q66: Which of the following functions is similar
Q67: Which of the following functions can be
Q69: The MONTHS_BETWEEN function can be used to
Q70: The <u>NULLIF</u> function is often combined with
Q71: The LPAD or RPAD function can be
Q73: The <u>RTRIM</u> function can be used to