MySQL FLOAT vs DEC - DECIMAL & FLOAT datatype of MySQL & Difference
Detailed discussion on mysql float vs dec. Use MySQL datatype DECIMAL and why DECIMAL is better than FLOAT. ... CREATE TABLE `salary_info` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL default '', `salary` DEC(6,2) NOT NULL ......