Which of the following statements will display the value of FL assigned to the state column as FLORIDA?
a.SELECT customer#, city, SUBSTR( 'FL', 'FLORIDA') FROM customers
WHERE state = 'FL';
b.SELECT customer#, city, REPLACE(state, 'FL', 'FLORIDA') FROM customers
WHERE state = 'FL';