A data analyst is working with the following table my_table:
customer_name dollars_spent
Hex Sprockets [125.34, 100.15, 9003.99]
Dented Fenders [16.99, 200.85, 33.49, 88.17]
The analyst wants to divide each value in the dollars_spent array by 100 to get the spend in terms of hundreds of dollars using the following code block:
SELECT
customer_name,
_______
FROM my_table;
Which line of code can be used to fill in the blank so that the above code block successfully completes the task?
Submit