COT (SQL Server Compact Edition)

Fonction mathématique qui renvoie la cotangente trigonométrique de l'angle spécifié, en radians, dans l'expression float.

Syntaxe

COT ( float_expression )

Arguments

  • float_expression
    Expression de types de données implicitement convertibles en type float.

Valeur retournée

float

Exemple

L'exemple suivant renvoie la cotangente de différents angles.

CREATE TABLE Cotangent ("COT(1)" float, "COT(PI()/6)" float, "COT(PI()/4)" float, "COT(PI()/3)" float, "COT(PI()/2)" float)
INSERT INTO Cotangent VALUES (COT(1), COT(PI()/6), COT(PI()/4), COT(PI()/3), COT(PI()/2))
SELECT * FROM Cotangent

Voir aussi

Aide et information

Assistance sur SQL Server Compact Edition