Sorry for not adding these.
I'm totally lost how to fix this concat issue. Can you please guide me.
Compose:
INSERT INTO test(FirstName,LastName,BirthDate,Salary,Gender,Department,JobTitle) VALUES
Compose 2:
concat('(', '''', item()?['FirstName'], '''', ',', '''',item()?['LastName'], '''', ',', '''',item()?['BirthDate'], '''', ',', item()?['Salary'],',', '''',item()?['Gender'], '''', ',', '''',item()?['Department'], '''', ',', '''',item()?['JobTitle'], '''','),')
Compose 4:
concat(outputs('Compose'), substring(join(variables('ArrayVar'), ','), 0, sub(length(join(variables('ArrayVar'), ',')), 1)), ';')
NOTE: Salary is decimal(18,2).