This is a dedicated watch page for a single video.
A data engineer is assigned the task of creating a table using a CSV file stored in local storage. The data engineer executes the following SQL statement and the table is created successfully. CREATE TABLE venues ( name STRING , area INT ) USING CSV LOCATION 'dbfs:/FileStore/data/venues.csv' Now, the data engineer tries to add a record to the table using INSERT INTO command. Which of the following would be the output of the INSERT INTO command?