Arrondir dans une requette MySQL ?

Arrondir dans une requette MySQL ? - PHP - Programmation

Marsh Posté le 21-08-2002 à 12:14:09    

Je voudrais savoir s'il existe un moyen d'arrondir une valeur dans une requette mysql ?
Merci.

Reply

Marsh Posté le 21-08-2002 à 12:14:09   

Reply

Marsh Posté le 21-08-2002 à 12:14:57    

oui, bonne question, ça m'interesse aussi !!

Reply

Marsh Posté le 21-08-2002 à 12:15:53    

c pas pour rien que je la pose  :D

Reply

Marsh Posté le 21-08-2002 à 12:19:28    

j'arrondis à 4 sec pour trouver le résultat :D
http://www.mysql.com/doc/en/Mathem [...] tions.html


---------------
...oups kernel error...
Reply

Marsh Posté le 21-08-2002 à 12:21:20    

j'arrondi a 4 heures pour trouver ou c'est dans cette page :D
merci bien ;)

Reply

Marsh Posté le 21-08-2002 à 12:23:56    

:lol:
pour les fainéants qui passeront après alors :

Code :
  1. ROUND(X)
  2. Returns the argument X, rounded to the nearest integer:
  3. mysql> SELECT ROUND(-1.23);
  4.         -> -1
  5. mysql> SELECT ROUND(-1.58);
  6.         -> -2
  7. mysql> SELECT ROUND(1.58);
  8.         -> 2
  9. Note that the behaviour of ROUND() when the argument is half way between two integers depends on the C library implementation. Some round to the nearest even number, always up, always down, or always toward zero. If you need one kind of rounding, you should use a well-defined function like TRUNCATE() or FLOOR() instead.
  10. ROUND(X,D)
  11. Returns the argument X, rounded to a number with D decimals. If D is 0, the result will have no decimal point or fractional part:
  12. mysql> SELECT ROUND(1.298, 1);
  13.         -> 1.3
  14. mysql> SELECT ROUND(1.298, 0);
  15.         -> 1


---------------
...oups kernel error...
Reply

Marsh Posté le 21-08-2002 à 12:26:30    

ouai mais j'avais quand mm trouver avant :D
 
j'ai utiliser ca pour avoir 2 chiffres apres : SELECT ROUND(1.298, 2);

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed