no, purtroppo non è cosìOriginariamente inviato da marketto
per inserire numeri nel formato XX,XX devi dare FLOAT(4,2).
4 digit totali, di cui 2 dopo la virgola...
"When the keyword FLOAT is used for a column type without a precision specification, MySQL uses four bytes to store the values. MySQL also supports variant syntax with two numbers given in parentheses following the FLOAT keyword. The first number represents the display width and the second number specifies the number of digits to be stored and displayed following the decimal point (as with DECIMAL and NUMERIC). When MySQL is asked to store a number for such a column with more decimal digits following the decimal point than specified for the column, the value is rounded to eliminate the extra digits when the value is stored."
http://dev.mysql.com/doc/mysql/en/Numeric_types.html
imposta float (4,2)
e potrai inserire anche 9999,99
6 in totale di cui "teoricamente" 4 integer e 2 decimali
purtroppo si piò anche inserire 666666
bo