I have a database column, "my_value", that is a NVARCHAR data type.
I would like to convert that "my_value" from i.e. 1/4 to .25
Is there a function or series of functions I can use to get this done? I do this for values that are numeric and it works fine:
CASE WHEN ISNUMERIC(my_value)= 1 THEN cast (my_value as float) ELSE cast (0 as float) END AS my_value2
Thank you in advance.