Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
What should you fill in the blank to successfully create a table using data from CSV files located at /path/input?
/path/input
CREATE TABLE my_table(col1 STRING, col2 STRING)____________OPTIONS (header = “true“, delimiter = “;“)LOCATION = “/path/input“
A
FROM CSV
B
USING DELTA
C
AS
D
USING CSV
E
AS CSV