Spark SQL - An Example
Work through an example that demonstrates executing queries using Spark SQL.
We'll cover the following...
Simple query example
When we execute Spark SQL queries in the spark-shell, we don’t need to explicitly create a SparkSession
object. We would if we were writing a Spark application that was to be run using spark-submit
. The ...