-- phpMyAdmin SQL Dump -- version 4.6.6 -- https://www.phpmyadmin.net/ -- -- Client : 127.0.0.1:3306 -- Généré le : Ven 05 Mai 2017 à 10:48 -- Version du serveur : 5.6.35 -- Version de PHP : 7.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de données : `mybdd` -- -- -------------------------------------------------------- -- -- Structure de la table `graphique` -- CREATE TABLE `graphique` ( `mois` int(2) NOT NULL, `libelle_produit` varchar(50) DEFAULT NULL, `qtvendu` int(6) DEFAULT NULL, `qtilot` int(6) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Contenu de la table `graphique` -- INSERT INTO `graphique` (`mois`, `libelle_produit`, `qtvendu`, `qtilot`) VALUES (1, 'produit1', 6876, 3000), (2, 'produit1', 8449, 6000), (3, 'produit1', 7856, 7850), (4, 'produit1', 7847, 7856), (5, 'produit1', 8338, 6543), (6, 'produit1', 5976, 6543), (7, 'produit1', 7298, 8912), (8, 'produit1', 8146, 7298), (9, 'produit1', 8167, 8449), (10, 'produit1', 6032, 6550), (11, 'produit1', 7752, 7298), (12, 'produit1', 7353, 7350); -- -- Index pour les tables exportées -- -- -- Index pour la table `graphique` -- ALTER TABLE `graphique` ADD PRIMARY KEY (`mois`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;