1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| CREATE TABLE `membres` (
`ID` tinyint(4) NOT NULL auto_increment,
`numero` tinyint(4) NOT NULL default '0',
`nom` varchar(64) NOT NULL default '',
PRIMARY KEY (`ID`)
) AUTO_INCREMENT=4 ;
--
-- Contenu de la table `membres`
--
INSERT INTO `membres` VALUES (1, 1, 'DUBOIS');
INSERT INTO `membres` VALUES (2, 2, 'DURAND');
INSERT INTO `membres` VALUES (3, 3, 'DUPONT');
CREATE TABLE `reservations` (
`ID` tinyint(4) NOT NULL auto_increment,
`ID_client` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`ID`)
) AUTO_INCREMENT=7 ;
--
-- Contenu de la table `reservations`
--
INSERT INTO `reservations` VALUES (1, 1);
INSERT INTO `reservations` VALUES (2, 1);
INSERT INTO `reservations` VALUES (3, 1);
INSERT INTO `reservations` VALUES (4, 2);
INSERT INTO `reservations` VALUES (5, 2);
INSERT INTO `reservations` VALUES (6, 3); |
Partager