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
|
CREATE TABLE `commande` (
`id` int(11) NOT NULL auto_increment,
`personne` int(11) NOT NULL,
`prix` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Contenu de la table `commande`
--
INSERT INTO `commande` (`id`, `personne`, `prix`) VALUES
(1, 1, 18),
(2, 1, 17),
(3, 1, 125);
-- --------------------------------------------------------
--
-- Structure de la table `personne`
--
CREATE TABLE `personne` (
`id` int(11) NOT NULL auto_increment,
`nom` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Contenu de la table `personne`
--
INSERT INTO `personne` (`id`, `nom`) VALUES
(1, 'foo'),
(2, 'bar'); |
Partager