Maximum precision for DECIMAL column in MySQL

2003-05-31 Thread Matt Solnit
It looks like the maximum precision for a DECIMAL column is 17 in MySQL. Is this documented anywhere? I get the following results: mysql> CREATE TABLE `scale_test6` (`a_dec` decimal(30,23) default NULL) TYPE=MyISAM; mysql> INSERT INTO scale_test6 (a_dec) VALUES (12345678.123456789012345678901234

Re: Maximum precision for DECIMAL column in MySQL

2003-05-31 Thread Heikki Tuuri
kki - Original Message - From: Matt Solnit To: [EMAIL PROTECTED] ; Heikki Tuuri Sent: Friday, May 30, 2003 8:02 PM Subject: Maximum precision for DECIMAL column in MySQL It looks like the maximum precision for a DECIMAL column is 17 in MySQL. Is this documented anywhere? I get the follow