I have a field value productlength of 0.123. This is from a view and has a data type of varchar.
I need to convert it to a float or numeric value so as o perform math comparisons.
convert(float,productlength) and cast(productlength as float) both do not work.
error varchar cant be converted to float
or somethiing liek that.
From what I have read varchar can simply not be converted to a numeric string?
Any clever ways around this?