powered by
Executes a SQL query using Spark, returning the result as a SparkDataFrame.
sql(sqlQuery)
A character vector containing the SQL query
SparkDataFrame
# NOT RUN { sparkR.session() path <- "path/to/file.json" df <- read.json(path) createOrReplaceTempView(df, "table") new_df <- sql("SELECT * FROM table") # }
Run the code above in your browser using DataLab