Spark Programming Spark SQL

explode The explode method generates zero or more rows from a column using a user-provided function. It takes three arguments: • input column, • output column • user provided function generating one or more values for the output column for each value in the input column. For example, consider a text column containing contents of an email. ................
................