Spark SQL Concatenate String et int

select concat('01/01/', extract(year from current_timestamp()) - 5)
select concat('01/01/', 2020)
Hairy Guy