I'm trying to change the datatype of an existing column from VARCHAR to double. This field was used to hold price and now I want to to be a number so I can search/sort it by numerical value.
So, The old system allowed the "$" to be included in the number, so before I change the datatype how can i remove all instances of the $ from the table?
Is there some sort of find and replace in sql?
Thanks
Jesse