A voir également:
- Comment afficher l'offre unique la plus basse (mySQL)
- Offre disney plus - Accueil - Streaming
- Comment annuler une offre sur vinted - Guide
- Afficher appdata - Guide
- Mysql community server - Télécharger - Bases de données
- Afficher taille dossier windows - Guide
2 réponses
Salut,
Un truc comme :
ou
cdlt
un étranger, c'est un ami qu'on n'a pas encore rencontré.
Un truc comme :
select * from offre
where montant = (select min(montant) from offre
group by montant having count(*) = 1)
ou
select * from offre
where montant = (select min(montant) from (select montant from offre
group by montant having count(*) = 1))
cdlt
un étranger, c'est un ami qu'on n'a pas encore rencontré.