A junior data engineer needs to create a Spark SQL table my_table for which Spark manages both the data and the metadata. The metadata and data should also be stored in the Databricks Filesystem (DBFS). Which of the following commands should a senior data engineer share with the junior data engineer to complete this task?
a) CREATE TABLE my_table USING PARQUET LOCATION '/path/to/dbfs/my_table';
b) CREATE TABLE my_table USING DELTA LOCATION '/path/to/dbfs/my_table';
c) CREATE TABLE my_table USING DELTA;
d) CREATE TABLE my_table USING PARQUET;