In MySQL, what is the preferred column type for storing a product\'s price (or currencies in general)? Google learned me DECIMAL of FLOAT is often used, but I wonder which one i
I prefer INT (price multipled by 100) which solves floating point problem in other software.