
Explanation:
The correct answer is B because the prefix 'json' directly specifies that the data type being read is JSON. This is evident from the syntax used in the FROM clause of the SQL query.
Given a SQL query that starts with 'SELECT * FROM json./data/logs', what can you infer about the data type being read from the file path specified?
A
The data type is CSV.
B
The data type is JSON.
C
The data type is Parquet.
D
The data type is Avro.
No comments yet.