I run this SQL code and it displays me, result = 60 I did not understand why it returns me the sum of the variables while the @Result variable contains strings
SET @data_code = 10;
set @env_code = 20;
set @Id = 30;
set @Result = @data_code + '-' + @env_code + '-FrontEnd' + @Id;
select @Result