I'm trying to concatenate a string:
concat(product," (",cast(created_date as string)," - ",cast(end_date as string),") ")
in Output I get :
Row String
1 Product_B (12-02-2020 - 21-04-2020)
2 Product_A (10-01-2020 - 11-02-2020)
3 Product_C (14-05-2020 - 19-07-2020)
So I want to add a line break in concatenate string And as a result, receive:
Row String
1 Product_B
(12-02-2020 - 21-04-2020)
2 Product_A
(10-02-2020 - 11-02-2020)
3 Product_C
(14-05-2020 - 19-07-2020)
What needs to be added to get break a string line?