-
Notifications
You must be signed in to change notification settings - Fork 0
/
testudp.sql
48 lines (39 loc) · 1.04 KB
/
testudp.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
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3310
-- Généré le : jeu. 12 jan. 2023 à 23:08
-- Version du serveur : 10.4.24-MariaDB
-- Version de PHP : 8.1.4
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
--
-- Base de données : `testudp`
--
-- --------------------------------------------------------
--
-- Structure de la table `registration`
--
CREATE TABLE `registration` (
`username` varchar(50) NOT NULL,
`nom` varchar(50) NOT NULL,
`prenom` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `registration`
--
INSERT INTO `registration` (`username`, `nom`, `prenom`, `password`) VALUES
('ahmed', 'ahmed', 'ahmed', 'ahmed'),
('ayoub', 'ayoub', 'ayoub', 'ayoub');
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `registration`
--
ALTER TABLE `registration`
ADD PRIMARY KEY (`username`);
COMMIT;