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
| -- Structure de la table `test_trafic`
--
CREATE TABLE IF NOT EXISTS `test_trafic` (
`Site` varchar(11) NOT NULL,
`WEEKOF` varchar(15) NOT NULL,
`ventes` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `test_trafic`
--
INSERT INTO `test_trafic` (`Site`, `WEEKOF`, `ventes`) VALUES
('10001', '02/06/2008', 6000),
('10001', '09/06/2008', 6063),
('10001', '16/06/2008', 6070),
('10001', '29/12/2008', 3693),
('10002', '02/06/2008', 2904),
('10002', '09/06/2008', 3010),
('10002', '16/06/2008', 2991),
('10003', '02/06/2008', 3747),
('10003', '09/06/2008', 3782),
('10003', '16/06/2008', 3699),
('10003', '23/06/2008', 3766),
('10003', '30/06/2008', 3834),
('10003', '07/07/2008', 3327),
('10004', '02/06/2008', 3680),
('10004', '09/06/2008', 3737),
('10004', '16/06/2008', 3709),
('10004', '23/06/2008', 3565),
('10004', '30/06/2008', 3486),
('10004', '07/07/2008', 2925), |
Partager