
Ultimate access to all questions.
How can you directly query a Delta Lake table using Spark SQL?
A
spark.read.delta("/path/to/table").sql("SELECT * FROM table")*
B
spark.sql("SELECT * FROM delta_table").show()*_
C
spark.read.format("delta").load("/path/to/table").show()
D
spark.sql("SELECT * FROM delta./path/to/table")*