摘要: mysql> create table testdate( -> id int not null auto_increment primary key, -> time date);Query OK, 0 rows affected (0.30 sec)mysql> insert into testdate(time) values('2007-5-4');Query OK, 1 row affected (0.06 sec)mysql> select * from testdate;+----+------------+| id | time | 阅读全文
posted @ 2012-11-10 11:21 矢风快乐 阅读(222) 评论(0) 推荐(0)