SQL La fonction max ()


SQL MAX () Fonction

La fonction max ()

La fonction max () retourne la plus grande valeur de la colonne sélectionnée.

SQL MAX () Syntaxe

SELECT MAX(column_name) FROM table_name


SQL MAX () Exemple

Nous avons ce qui suit "Commandes" table:
O_IDOrderDateOrderPriceClient
112/11/20081000Hansen
223/10/20081600Nilsen
302/09/2008700Hansen
403/09/2008300Hansen
530/08/20082000Jensen
604/10/2008100Nilsen
Maintenant, nous voulons trouver la plus grande valeur de la «OrderPrice" colonne.
Nous utilisons l'instruction SQL suivante:
SELECT MAX(OrderPrice) AS LargestOrderPrice FROM Orders
L'ensemble de résultats se présente comme suit:
LargestOrderPrice
2000

0 commentaires:

Post a Comment

HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT