How should I handle the LIST_PRICE field in MYSQL?
The outside data comes through with commas. For example: 599,000
If I make the data type INT, the prices are truncated at the comma: 599
If I make the data type VARCHAR, the prices show correctly however it kills the whole searching feature since you can't < or > a VARCHAR.
Thanks in advance.

Reply With Quote

