Ferhat BINGOL wrote:
Hi Scoot,

I do my table structure like that

CREATE TABLE `test_table` (
  `timestamp` date NOT NULL default '0000-00-00',
  `data` varchar(5) NOT NULL default '',
  PRIMARY KEY  (`timestamp`),
  KEY `timestamp` (`timestamp`)
) TYPE=MyISAM;

Correct me if I'm wrong, but I think the second index is absolutely useless. It will just use more space.


--
Philippe Poelvoorde
COS Trading Ltd.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]



Reply via email to