Section courante

A propos

Section administrative du site

POWER

Puissance
MySQL  

Syntaxe

Power(Nombre1,Nombre2)

Paramètres

Nom Description
Nombre1 Ce paramètre permet d'indiquer la base de la puissance
Nombre2 Ce paramètre permet d'indiquer la puissance

Description

Cette fonction retourne la puissance d'un nombre.

Algorithme

MODULE POWER(a,b)
   p ← 1
   BOUCLE POUR i ← 1 JUSQU'A b
      pp x a
   FIN BOUCLE POUR
   RETOURNE p

Exemple

Voici un exemple montrant une utilisation plus classique de cette fonction :

  1. SELECT "POWER(0,1)=" As Text,power(0,1) As Result UNION
  2. SELECT "POWER(1,1)=" As Text,power(1,1) As Result UNION
  3. SELECT "POWER(-1,0)= " As Text,power(-1,0) As Result UNION
  4. SELECT "POWER(-1,1)=" As Text,power(-1,1) As Result UNION
  5. SELECT "POWER(2,2)=" As Text,power(2,2) As Result UNION
  6. SELECT "POWER(2,8)=" As Text,power(2,8) As Result UNION
  7. SELECT "POWER(30,2)=" As Text,power(30,2) As Result UNION
  8. SELECT "POWER(-35,4)=" As Text,power(-35,4) As Result 

on obtiendra le résultat suivant :

Text Result
POWER(0,1)= 0
POWER(1,1)= 1
POWER(-1,0)= 1
POWER(-1,1)= -1
POWER(2,2)= 4
POWER(2,8)= 256
POWER(30,2)= 900
POWER(-35,4)= 1500625

Voir également

Article - Les géants de l'informatique - Oracle

Références

MySQL - Référence, Edition Micro Application, Nicolas Rivereau, Antoine Pichot, 2002, ISBN: 2-7429-2560-0, page 928.
MySQL: The definitive guide to using, programming, and administering MySQL 4 databases - Second Edition, Paul Dubois, 2003, ISBN: 0-7357-1212-3, page 806

Dernière mise à jour : Mercredi, le 29 avril 2015