I have a MySQL field that is of the type Decimal(12,2). Upon using the following query to get an insert, I\'m not getting the correct value stored.
INSERT INTO t
if your value is read from some HTML form and you can't avoid the comma being sent to the query, do as follows:
INSERT INTO table (someValue) VALUES (replace('1,200',',','');
that should do....