Multiple Choice
Contents of the CUSTOMERS table
Note: The ST column name is truncated,this represents the STATE column.
-Which of the following will display the name of each customer in lower-case characters based upon the contents of the CUSTOMERS table?
A) SELECT LOWER(name) FROM customers;
B) SELECT LOWER(firstname) || ' ' || LOWER(lastname) FROM customers;
C) SELECT CONCAT(LOWER(firstname) ,' ',LOWER(lastname) ) FROM customers;
D) none of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q85: The _ function is used to determine
Q86: Which of the following functions will round
Q87: Case conversion functions can only be used
Q88: The <u>ROUND</u> function can be used to
Q89: The _ function takes a specified value
Q91: The _ function is used to return
Q92: To indicate that the numeric value of
Q93: You must include the MI element in
Q94: Contents of the CUSTOMERS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"
Q95: Which of the following statements will produce