Hi @John Bโ there is two way to access your delta table-
SELECT * FROM delta.`your_delta_table_path`
df.write.format("delta").mode("overwrite").option("path", "your_path").saveAsTable("table_name")
Now you can use your select query-
SELECT * FROM [table_name]
Ajay Kumar Pandey