熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> SQL語言 >> 正文

Sql語言基礎教程 sql基本語句[2]

2022-06-13   來源: SQL語言 

    RETURN([整數表達式])

    CASE 表達式
    ()簡單case表達式
    CASE 表達式
    WHEN 表達式 THEN 表達式
    [WHEN 表達式 THEN 表達式[……]]
    [ELSE 表達式N]
    END

    例
    select name=convert(varchar(au_lname)
    contract=case contract
    when then invalid contract
    when then valid contract
    End

    from authors()搜索型CASE表達式

    CASE表達式

    WHEN 布爾表達式 THEN 表達式
    [WHEN 布爾表達式 THEN 表達式[……]]
    [ELSE 表達式N]
    End

    例

    select name=convert(varchar(au_lname)
    contract=case contract
    when cintract= then invalid contract
    when contract<> then valid contract
    End
    from authors

    ()CASE關系函數

    CASE關系函數有以下種形式

    ●COALESCE(表達式表達式
    ●COALESCE(表達式表達式……表達式N)
    ●NULLIF(表達式表達式

[]  []  


From:http://tw.wingwit.com/Article/program/SQL/201311/16183.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.