I'm having a little problem here...I have a large database that has a column with large numbers, that include commas in the numbers. What I want to do is execute a mysql selection that selects everything that is (as an example) less than 50000, however, when I do this, the numbers past the first comma are ignored. For example, if I have the number "50,125", that number will only get selected as "50" instead of the whole number. Is there a way to tell mysql to ignore the commas in the numbers? Or a way to correct this in php?
Thanks