I am new to spark/zeppelin and I wanted to complete a simple exercise, where I will transform a csv file from pandas to Spark data frame and then register the table to query
Correct syntax would be:
sqlContext.registerDataFrameAsTable(spark_clean_df, 'table1') sqlContext.sql(select * from table1 where ...)