欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MS SQL的CASE...WHEN...THEN...END语法

程序员文章站 2022-11-25 13:53:50
根据多个可能的答案检查一个值或变量。 举例说明: SELECT [type],CASE [type] WHEN 'TT' THEN 'TYPE_TABLE' WHEN 'FN' THEN 'SQL_SCALAR_FUNCTION' WHEN 'C' THEN 'CHECK_CONSTRAINT' W ......

根据多个可能的答案检查一个值或变量。

举例说明:

 

select [type],case [type] 
              when 'tt' then 'type_table'
              when 'fn' then 'sql_scalar_function'
              when 'c' then 'check_constraint'
              when 'sq' then 'service_queue' 
              when 'f' then 'foreign_key_constraint' 
              when 'u' then 'user_table' 
              when 'd' then 'default_constraint' 
              when 'pk' then 'primary_key_constraint'
              when 's' then 'system_table' 
              when 'it' then 'internal_table' 
              when 'p' then 'sql_stored_procedure' 
              when 'tf' then 'sql_table_valued_function' 
              when 'tr' then 'sql_trigger' 
              end as [type description]
from (
    select distinct [type] from sys.objects
) o