CREATE TABLE content (
  id int(11) NOT NULL auto_increment,
  fromid int(11) NOT NULL default '0',
  toid int(11) NOT NULL default '0',
  msg varchar(200) NOT NULL default '',
  topicid int(11) NOT NULL default '0',
  sendtime timestamp(14) NOT NULL,
  PRIMARY KEY  (id),
  KEY fromid_2 (fromid),
  KEY toid (toid),
  KEY topicid (topicid)
) TYPE=MyISAM;INSERT INTO content VALUES (1,0,1,'welcome  to <love room>',1,20060424000338);
导入后,为什么sendtime 变成0000-00-00 00:00:00格式啦,怎么变成20060424000338啊,郁闷