共用方式為


SIN (Transact-SQL)

傳回 float 運算式中指定角度的三角正弦函數 (Sine) (以弧度和近似數值為單位)。

適用於:SQL Server (SQL Server 2008 透過目前版本)、Windows Azure SQL 資料庫 (初始版本,透過目前版本)。

主題連結圖示 Transact-SQL 語法慣例

語法

SIN ( float_expression )

引數

  • float_expression
    這是一個 float 類型或能夠隱含地轉換成 float 之類型的運算式

傳回類型

float

範例

下列範例會計算指定角度的 SIN。

DECLARE @angle float;
SET @angle = 45.175643;
SELECT 'The SIN of the angle is: ' + CONVERT(varchar,SIN(@angle));
GO

以下為結果集:

The SIN of the angle is: 0.929607                       

(1 row(s) affected)

請參閱

參考

數學函數 (Transact-SQL)