df.withColumn("experience", concat( floor(months_between(col("current_date"), col("hire_date")) /12),lit("years"), floor(months_between(col("current_date"), col("hire_date")) % 12),lit("months"),
date_diff(current_date(),col("for_date")),lit("days")
)
).display()