From: Quang D. Nguyen Date: May 29 1999 9:03pm Subject: How is it? List-Archive: http://lists.mysql.com/mysql/4132 Message-Id: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Dear MySQL Developers, How do you think about this problem? --cut here------ mysql> create table example ( -> mydate DATE ); Query OK, 0 rows affected (0.02 sec) mysql> insert into example values ('1999-02-30'); Query OK, 1 row affected (0.02 sec) mysql> select mydate from example -> ; +------------+ | mydate | +------------+ | 1999-02-30 | +------------+ 1 row in set (0.00 sec) mysql> ---cut here---------------------- Which day is 1999-02-30 ? Thank you.