SQL FIRST () Fonction
La fonction First ()
Le PREMIER () renvoie la première valeur de la colonne sélectionnée.
SQL FIRST () Syntaxe
SELECT FIRST(column_name) FROM table_name
SQL FIRST () Exemple
Nous avons ce qui suit "Commandes" table:
O_ID | OrderDate | OrderPrice | Client |
---|---|---|---|
1 | 12/11/2008 | 1000 | Hansen |
2 | 23/10/2008 | 1600 | Nilsen |
3 | 02/09/2008 | 700 | Hansen |
4 | 03/09/2008 | 300 | Hansen |
5 | 30/08/2008 | 2000 | Jensen |
6 | 04/10/2008 | 100 | Nilsen |
Maintenant, nous voulons trouver la première valeur de la "OrderPrice" colonne.
Nous utilisons l'instruction SQL suivante:
SELECT FIRST(OrderPrice) AS FirstOrderPrice FROM Orders
Astuce: si PREMIER Solution () la fonction n'est pas pris en charge:
SELECT OrderPrice FROM Orders ORDER BY O_Id LIMIT 1
L'ensemble de résultats se présente comme suit:
FirstOrderPrice |
---|
1000 |
0 commentaires:
Post a Comment
HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT