I would like to see if I can split a column in spark data. Like this,
Select employee, split(department,"_") from Employee
Try the following:
SELECT explode(split(str, '_'))
Or that:
SELECT split(str, ' ')[0] as part1, split(str, ' ')[1] as part2