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 32 33 34 35 36 37 38 39 40 41 42 43 44
| CREATE TABLE `commande_imprimante` (
`no_commande` bigint(20) NOT NULL default '0',
`no_imprimante` mediumint(9) NOT NULL default '0',
`id_employe` bigint(20) NOT NULL default '0',
`nb_cartouches` tinyint(4) NOT NULL default '0',
`type_cartouche` varchar(40) NOT NULL default '',
PRIMARY KEY (`no_commande`,`no_imprimante`,`id_employe`,`type_cartouche`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Contenu de la table `commande_imprimante`
--
INSERT INTO `commande_imprimante` VALUES (96, 7, 36, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (96, 7, 36, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (89, 4, 75, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (90, 4, 117, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (91, 1, 114, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (92, 4, 136, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (94, 1, 103, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (94, 1, 103, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (95, 3, 112, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (95, 3, 112, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (96, 7, 54, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (96, 7, 54, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (88, 1, 132, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (88, 1, 132, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (89, 4, 75, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (87, 1, 76, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (86, 8, 96, 3, 'noire');
INSERT INTO `commande_imprimante` VALUES (83, 2, 35, 3, 'noire');
INSERT INTO `commande_imprimante` VALUES (83, 2, 35, 3, 'couleur');
INSERT INTO `commande_imprimante` VALUES (85, 14, 130, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (85, 3, 105, 3, 'noire');
INSERT INTO `commande_imprimante` VALUES (85, 2, 69, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (85, 2, 69, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (82, 3, 8, 3, 'couleur');
INSERT INTO `commande_imprimante` VALUES (82, 3, 8, 3, 'noire');
INSERT INTO `commande_imprimante` VALUES (81, 14, 89, 3, 'noire');
INSERT INTO `commande_imprimante` VALUES (80, 4, 86, 1, 'noire');
INSERT INTO `commande_imprimante` VALUES (80, 4, 86, 1, 'couleur');
INSERT INTO `commande_imprimante` VALUES (74, 1, 131, 2, 'noire');
INSERT INTO `commande_imprimante` VALUES (80, 2, 7, 2, 'couleur');
INSERT INTO `commande_imprimante` VALUES (79, 4, 21, 1, 'noire'); |
Partager