shantanu oak <[EMAIL PROTECTED]> wrote on 07/18/2005 01:17:57 PM:
> I am getting two different results for the same set of commands on two
> different versions of MySQL.
> Can anyone explain what the issue is?
>
> CREATE TABLE `testdecimal` (
> `rate` decimal(7,4) NOT NULL default '0.'
> ) EN
12:18 PM
To: mysql@lists.mysql.com
Subject: Different versions differnet results
I am getting two different results for the same set of commands on two
different versions of MySQL.
Can anyone explain what the issue is?
CREATE TABLE `testdecimal` (
`rate` decimal(7,4) NOT NULL default '0.
In the last episode (Jul 18), shantanu oak said:
> I am getting two different results for the same set of commands on
> two different versions of MySQL. Can anyone explain what the issue
> is?
>
> CREATE TABLE `testdecimal` (
> `rate` decimal(7,4) NOT NULL default '0.'
> ) ENGINE=MyISAM;
>
>
I am getting two different results for the same set of commands on two
different versions of MySQL.
Can anyone explain what the issue is?
CREATE TABLE `testdecimal` (
`rate` decimal(7,4) NOT NULL default '0.'
) ENGINE=MyISAM;
INSERT INTO testdecimal SET rate=1468;
select * from testdecimal;