create database if not exists base_exo; create table base_exo.personne ( id_personne int not null auto_increment, nom varchar(30) not null, prenom varchar(30) null, adresse varchar(30) not null, code_postal char(5) not null, ville varchar(20) not null, mail varchar(30) not null, telephone char(15) not null, primary key (id_personne) );