In the last episode (Feb 05), [EMAIL PROTECTED] said:
> create  table if not exists CBI (date DATE not null, close DECIMAL(10,2), high 
>DECIMAL(10,2), low DECIMAL(10,2), volume MEDIUMINT, yest DECIMAL(10,2), PRIMARY KEY 
>date (date))
>  Query OK, 0 rows affected (0.00 sec)
>
> insert ignore into CBI 
>Values('2003-02-05','31.2000','31.3500','31.0500','350','31.3500')
>  Query OK, 1 row affected (0.02 sec) <====== 1 row is added
>
> select * from   CBI where date='2003-02-05'
>  Empty set (0.00 sec)

Works for me on mysql 4.0.9.  What does "select * from CBI" print?

-- 
        Dan Nelson
        [EMAIL PROTECTED]

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to