ExercicesContent License: Creative Commons Attribution 4.0 International (CC-BY-4.0)Credit must be given to the creatorDownloadsDownloadAtelier - Data Definition Language (DDL)Thierry HUETAPERTO-NOTA Atelier : Data Definition Language (DDL)¶1. Créer une table pour les pays¶Solution to Exercise #CREATE TABLE pays ( code_pays CHAR(4) PRIMARY KEY, nom_pays VARCHAR(40) );2. Ajouter, modifier et supprimer une colonne dans une table¶Solution to Exercise #ALTER TABLE clients ADD COLUMN courriel VARCHAR(75); ALTER TABLE clients ALTER COLUMN courriel TYPE VARCHAR(60); ALTER TABLE clients DROP COLUMN courriel;