27 November 2021
SQL
Nous allons voir comment insérer une ou plusieurs entrées dans une table.
create table etudiants(
id_etudiant int,
nom char(20),
prenom char(50),
tel varchar(100),
date_naissance date
);
insert into etudiants values (1,'dupont','Eric','056842372','1986-01-01')
select * from etudiants
update etudiants set prenom='Michel'
where id_etudiant = '1'
delete from etudiants values (1,'dupont','Eric','056842372','1986-01-01')
select * from employes
select * from CATEGORIES
select nom, prenom, DATE_NAISSANCE from employes
select nom, prenom, salaire from employes
where salaire>=3500 ;
select nom, prenom, salaire from employes
where salaire 2000 and 5000;
select societe, ville, pays from clients
where pays IN ('Allemagne','France', 'Espagne');
select nom, prenom, fonction, date_embauche from employes
where date_embauche BETWEEN '01/01/1992' and '31/12/1992'
select nom, prenom, fonction, date_embauche from employes
where date_embauche BETWEEN '01/01/1992' and '31/12/1992'
select nom, prenom, fonction, commission from employes
where fonction='Repr�sentant(e)'
and commission >= 1000
and salaire >=3200;