Using the Spark SQL window functions, I need to split several columns to run my data queries, as shown below:
val w = Window.partitionBy($"a").partitionBy($"b").rangeBetween(-100, 0)
I currently do not have a test environment (work on settings), but as a quick question, is it currently supported as part of the Spark SQL window functions or does it not work?
source
share