SamGreene
Contributor II

The solution that worked what adding this python cell to the notebook:

 

%python
from pyspark.dbutils import DBUtils

dbutils = DBUtils(spark)

dbutils.widgets.text("catalog", "my_business_app")
dbutils.widgets.text("schema", "dev")
 
Then in the SQL Cell:
 
CREATE TABLE IF NOT EXISTS ${catalog}.${schema}.my_table_name;

View solution in original post