| CREATE TABLE counter (
  identificador int(10) unsigned NOT NULL auto_increment,
  file char(100) NOT NULL default '',
  counter int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (identificador),
  UNIQUE KEY file (file),
  UNIQUE KEY identificador (identificador),
  KEY identificador_2 (identificador)
) TYPE=MyISAM
 |