You are on page 1of 1

Corrigez la syntaxe suivante :

• SELECT Nom Personnel


• FROM Table Personnel
• WHERE Service = Informatique
• Having Age>=30
• GROUP BY date Recrutement
• ORDER BY Age Asc
Correction :
• SELECT Nom, Personnel
• FROM Table_Personnel
• WHERE Service = 'Informatique' AND Age >= 30
• GROUP BY date_Recrutement
• ORDER BY Age ASC

You might also like