Created
October 4, 2016 11:52
-
-
Save Ludovicmoreau/cc3a748e442ae3a927f86f8b6d1a3077 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE Promotions_eleves; | |
CREATE TABLE ( id int, Nom varchar(50), Prenom varchar(50), age int, Lieu_de_residence varchar(100)); | |
update Promotions SET Nom = 'Joel' WHERE id = 1; | |
update Promotions SET Prenom = 'Joel' WHERE id = 1; | |
update Promotions SET Lieu_de_résidence = 'Orleans' WHERE id = 1; | |
update Promotions SET age = 34 WHERE id = 1; | |
update Promotions SET Nom = 'Lehoux' WHERE id = 2; | |
update Promotions SET Prenom = 'Mickael' WHERE id = 2; | |
update Promotions SET Lieu_de_résidence = 'Orleans' WHERE id = 2; | |
update Promotions SET age = 35 WHERE id = 2; | |
update Promotions SET Nom = 'Louri' WHERE id = 3; | |
update Promotions SET Prenom = 'Louis' WHERE id = 3; | |
update Promotions SET Lieu_de_résidence = 'Orleans' WHERE id = 3; | |
update Promotions SET age = 24 WHERE id = 3; | |
update Promotions SET Nom = 'B' WHERE id = 4; | |
update Promotions SET Prenom = 'Anne-Laure' WHERE id = 4; | |
update Promotions SET Lieu_de_résidence = 'Orleans' WHERE id = 4; | |
update Promotions SET age = 28 WHERE id = 4; | |
update Promotions SET Nom = 'C' WHERE id = 5; | |
update Promotions SET Prenom = 'Maryse' WHERE id = 5; | |
update Promotions SET Lieu_de_résidence = 'Orleans' WHERE id = 5; | |
update Promotions SET age = 29 WHERE id = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment