Como faço para criar outra coluna de incremento automático do MySQL?

@MySQL não suporta várias colunas de incremento automátic

CREATE TABLE IF NOT EXISTS `parts` (
  `id` int(1,1) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `order` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Existe outra solução para tornar o valor da colunaorder aumenta automaticamente quando insiro um novo registro?

questionAnswers(6)

yourAnswerToTheQuestion