FLOOR |
Plancher |
---|---|
SQL Server | Microsoft SQL Server |
Syntaxe
FLOOR(Nombre) |
Paramètres
Nom | Description |
---|---|
Nombre | Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter |
Description
Cette fonction retourne uniquement la partie entière d'un nombre en omettant les décimales et sans même en tenir compte.
Exemple
Voici un exemple montrant une utilisation plus classique de cette fonction :
- SELECT 'FLOOR(1)=' AS Text, FLOOR(1) AS Result
- UNION
- SELECT 'FLOOR(1.1)=' AS Text, FLOOR(1.1) AS Result
- UNION
- SELECT 'FLOOR(1.7)=' AS Text, FLOOR(1.7) AS Result
- UNION
- SELECT 'FLOOR(-1)=' AS Text, FLOOR(- 1) AS Result
- UNION
- SELECT 'FLOOR(-1.1)=' AS Text, FLOOR(- 1.1) AS Result
- UNION
- SELECT 'FLOOR(-1.7)=' AS Text, FLOOR(- 1.7) AS Result
- UNION
- SELECT 'FLOOR(30.2)=' AS Text, FLOOR(30.2) AS Result
- UNION
- SELECT 'FLOOR(-35.4)=' AS Text, FLOOR(- 35.4) AS Result
on obtiendra le résultat suivant :
Text | Result |
FLOOR(1)= | 1 |
FLOOR(-35.4)= | -36 |
FLOOR(30.2)= | 30 |
FLOOR(-1.7)= | -2 |
FLOOR(-1.1)= | -2 |
FLOOR(-1)= | -1 |
FLOOR(1.7)= | 1 |
FLOOR(1.1)= | 1 |
Voir également
Articles - Les géants de l'informatique - Microsoft
Dernière mise à jour : Dimanche, le 7 juin 2015