I created a Databse with a table inside it in azure synaps which was an external table of sample azure data.
I run the code below to get access to the data in this table through pyspark
df = spark.sql("select * FROM greentaxidb.dbo.taxitable")
when I run the code above I get:
pyspark.sql.utils.AnalysisException: The namespace in session catalog must have exactly one name part: greentaxidb.dbo.taxitable

