11-02-2013, 10:36 PM
Code :
--
-- Structure de la table `t_troupe`
--
CREATE TABLE IF NOT EXISTS `t_troupe` (
`PK_troupe` int(11) NOT NULL AUTO_INCREMENT,
`FK_joueur` int(8) NOT NULL,
`FK_cTroupe` int(3) NOT NULL,
`nombre` int(11) NOT NULL,
`type` set('0','1') NOT NULL COMMENT '0=defense, 1=attaque',
PRIMARY KEY (`PK_troupe`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
Peut on, grâce à la méthode du ON DUPLICATE, up plusieurs lignes ? tables ? Les pages qui parlent de cette fonction le font trop rapidement je trouve.