Jump to content

Insert Currency?


barkster

Recommended Posts

I'm trying to insert some currency into my table where the fields are set as double(16,2) What am I doing wrong, do I have the field set to the wrong type?

 

INSERT INTO Prices(Price,Shipping)VALUES('5,692.23','6,000.50')

 

Give me values of 5 & 6  If I don't have a comma then it works but why doesn't it work?  Thanks

 

Link to comment
https://forums.phpfreaks.com/topic/52900-insert-currency/
Share on other sites

Unfortunately, the following does not appear to work in mysql version [ 4.1.21-community-nt ]:

 

SELECT CONVERT('5,692.23', DECIMAL);

 

This following may be a good option:

 

INSERT INTO Prices (Price, Shipping) VALUES (REPLACE('5,692.23', ',', ''), REPLACE('6,000.50', ',', ''))

Link to comment
https://forums.phpfreaks.com/topic/52900-insert-currency/#findComment-261494
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.