in Spark Sql by

Which of these code snippet is the correct format to run SQL queries? 

(i)display(spark.sqlContext("select * from Fresco")) 

(ii)print(spark.sql("select * from Fresco")) 

(iii)display(spark.sql("select * from Fresco")) 

(iv)show(spark.sql("select * from Fresco")) 

2 Answers

0 votes
by

display(spark.sql("select * from Fresco")) 

0 votes
by
edited by
...