A data engineer has written the following query: SELECT * FROM json./path/to/json/ ;
The data engineer asks a colleague for help to convert this query for use in a Delta Live Tables (DLT) pipeline. The query should create the first table in the DLT pipeline.
Which of the following describes the change the colleague needs to make to the query?
a) Replace "json" with "delta" to specify Delta Lake format.
b) Add "CREATE TABLE" statement before the query to define the table schema.
c) Convert the query to PySpark code for compatibility with Delta Live Tables.
d) Wrap the query in a transaction block for atomicity.