Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

View all the Fabric Data Days sessions on demand. View schedule

Make Fabric Notebooks more SQL friendly

When working in a Fabric Lakehouse and right clicking on a table and "Load Data" in the Explorer you currentely get a bunch of Python code in return. 

 

%%pyspark
df = spark.sql("SELECT * FROM [Lakehouse].[Database].[Table] LIMIT 1000")
display(df)
 
Please make it possible to return this in pure SQL instead. Writing SQL in Python when you are working in Notebooks seems unnecessary as you can change the code language for every cell, and this should at least not happen when Spark SQL has been picked as the Notebook Language. 
Status: New