Spark SQL datediff()
Spark SQL provides datediff() function to get the difference between two timestamps/dates. In this article,…
Spark SQL provides datediff() function to get the difference between two timestamps/dates. In this article,…
Spark array_contains() is an SQL Array function that is used to check if an element…
Spark SQL collect_list() and collect_set() functions are used to create an array (ArrayType) column on…
In this Spark article, I will explain how to convert an array of String column…
Spark SQL provides split() function to convert delimiter separated String to array (StringType to ArrayType)…
Spark SQL provides a slice() function to get the subset or range of elements from…
Using concat() or concat_ws() Spark SQL functions we can concatenate one or more DataFrame columns…
The row_number() is a window function in Spark SQL that assigns a row number (sequential integer number)…
Spark Window functions are used to calculate results such as the rank, row number e.t.c…
Spark SQL provides built-in standard Aggregate functions defines in DataFrame API, these come in handy…