精品国产亚洲一区二区三区,男女作爱在线观看免费网站,欧美的又大又长做禁片A片,97国产精品人妻无码久久久

  • 相關(guān)軟件
    >ASIN 創(chuàng)建者:webmaster 更新時間:2006-02-16 15:51

    返回以弧度表示的角度值,該角度值的正弦為給定的 float 表達(dá)式;亦稱反正弦。



    語法


    ASIN ( float_expression )



    參數(shù)


    float_expression



    float 類型的表達(dá)式,其取值范圍從 -1 到 1。對超過此范圍的參數(shù)值,函數(shù)將返回 NULL 并且報告域錯誤。



    返回類型


    float



    示例


    下例用 float 表達(dá)式返回給定角的 ASIN 值。



    -- First value will be -1.01, which fails.
    DECLARE @angle float
    SET @angle = -1.01
    SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
    GO

    -- Next value is -1.00.
    DECLARE @angle float
    SET @angle = -1.00
    SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
    GO

    -- Next value is 0.1472738.
    DECLARE @angle float
    SET @angle = 0.1472738
    SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
    GO


    下面是結(jié)果集:



    -------------------------
    The ASIN of the angle is:                    

    (1 row(s) affected)

    Domain error occurred.

                                         
    ---------------------------------
    The ASIN of the angle is: -1.5708                

    (1 row(s) affected)

                                         
    ----------------------------------
    The ASIN of the angle is: 0.147811              

    (1 row(s) affected)
    相關(guān)文章
    本頁查看次數(shù):