File "Student.sql"
Full Path: /home/analogde/www/WORDPRESS/HDL/CHESS_2022/Student.sql
File size: 1.59 KB
MIME-type: text/plain
Charset: utf-8
-- phpMyAdmin SQL Dump
-- version OVH
-- https://www.phpmyadmin.net/
--
-- Hôte : analogdepat.mysql.db
-- Généré le : mer. 29 juin 2022 à 20:16
-- Version du serveur : 5.6.51-log
-- Version de PHP : 7.4.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
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 : `analogdepat`
--
-- --------------------------------------------------------
--
-- Structure de la table `Student`
--
CREATE TABLE IF NOT EXISTS `Student` (
`ID` int(11) NOT NULL,
`nom` varchar(50) DEFAULT NULL,
`prenom` varchar(50) DEFAULT NULL,
`ville` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `Student`
--
INSERT INTO `Student` (`ID`, `nom`, `prenom`, `ville`) VALUES
(1, 'delpy', 'vincent', 'toulouse'),
(2, 'blase', 'bob', 'albi'),
(3, 'toto', 'lulu', 'paris');
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `Student`
--
ALTER TABLE `Student`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `Student`
--
ALTER TABLE `Student`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!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 */;