Plus de fonctions mathématiques

SQL Server intermédiaire

Ginger Grant

Instructor

Valeur absolue

Utilisez ABS() pour obtenir des valeurs non négatives

ABS(number)
SQL Server intermédiaire

Utiliser ABS en T-SQL (I)

SELECT ABS(-2.77), ABS(3), ABS(-2)
+--------------------+-------------------+-------------------+
|(No column name)    |(No column name)   |(No column name)   |
+--------------------+-------------------+-------------------+
|2.77                |3                  |2                  |
+--------------------+-------------------+-------------------+

SQL Server intermédiaire

Utiliser ABS en T-SQL (II)

SELECT DurationSeconds, ABS(DurationSeconds) AS AbsSeconds 
FROM Incidents
+--------------------+--------------------+ 
|DurationSeconds     |AbsSeconds          | 
+--------------------+--------------------+ 
|-25.36              |25.36               | 
|-258482.44          |258482.44           |
|45.66               |45.66               |
+--------------------+--------------------+ 
SQL Server intermédiaire

Carrés et racines carrées en T-SQL

SELECT SQRT(9) AS Sqrt, 
       SQUARE(9) AS Square
+--------+-----------+ 
|Sqrt    |Square     |
+--------------------+
|3       |81         |
+--------+-----------+

SQL Server intermédiaire

Logarithmes

  • LOG() retourne le logarithme naturel
  • Optionnel : vous pouvez fixer la base; si omise, elle vaut 2.718281828

 

LOG(number [,Base])
SQL Server intermédiaire

Calculer des logarithmes en T-SQL

SELECT  DurationSeconds, LOG(DurationSeconds, 10) AS LogSeconds
FROM Incidents
+--------------------+--------------------+  
|DurationSeconds     |LogSeconds          |
+--------------------+--------------------+  
|37800               |4.577491799837225   |
|5                   |0.6989700043360187  |
|20                  |1.301029995663981   |
...
+--------------------+--------------------+  
SQL Server intermédiaire

Logarithme de 0

Vous ne pouvez pas calculer le logarithme de 0 ; cela génère une erreur

SELECT LOG(0, 10)

An invalid floating point operation occurred.
SQL Server intermédiaire

Passons à la pratique !

SQL Server intermédiaire

Preparing Video For Download...