
Ultimate access to all questions.
What should you fill in the blank to successfully create a table using data from CSV files located at /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