-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_excel.sql
71 lines (58 loc) · 1.84 KB
/
test_excel.sql
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Mer 18 Juillet 2018 à 00:45
-- Version du serveur : 5.7.14
-- Version de PHP : 5.6.25
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 : `test_excel`
--
CREATE DATABASE IF NOT EXISTS `test_excel` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `test_excel`;
-- --------------------------------------------------------
--
-- Structure de la table `etudiants`
--
CREATE TABLE `etudiants` (
`id` int(11) NOT NULL,
`nom` varchar(20) NOT NULL,
`prenom` varchar(20) NOT NULL,
`promotion` varchar(30) NOT NULL,
`pourc` int(11) DEFAULT NULL,
`mension` varchar(30) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Contenu de la table `etudiants`
--
INSERT INTO `etudiants` (`id`, `nom`, `prenom`, `promotion`, `pourc`, `mension`) VALUES
(1, 'osomuna', 'christian', 'l2', 99, 'Grande distinction'),
(2, 'toengaho', 'alfred', 'l2', 79, 'Distinction'),
(3, 'nsa', 'jocelyn', 'l2', 67, 'Satisfaction'),
(4, 'kifaru', 'samy', 'g3', 45, 'Ajournement');
--
-- Index pour les tables exportées
--
--
-- Index pour la table `etudiants`
--
ALTER TABLE `etudiants`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `etudiants`
--
ALTER TABLE `etudiants`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
/*!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 */;