How to add to the number%, there is a query for example:
Select Concat(a.Retention,'%') From Applications a type a.Retention - float
I get the error:
**Error converting data type varchar to float.** Ie expect this result:
20% 15% instead of 20, 15
select concat(cast(1.33 as float),'%')it does not cause an error ... - Mike