Usage of "case...end" in SQL Server

Source: Internet
Author: User

In SQL Server Case...end statements, there are generally two ways to use:

1, equivalent to C # in If...else, example:

1 SelectCName, Title= Case2                  whenClevel='A1'  Then 'Junior Programmer'3                  whenClevel='A2'  Then 'Intermediate Programmer'4                  whenClevel='A3'  Then 'Senior Programmer'5                 Else 'Master of the Ashes level'6             End7  fromCoder

This notation can be used to make intervals or equivalent judgments.

2, equivalent to Switch...case in C #, for example:

1 SelectCName, Title= CaseClevel2                  when 'A1'  Then 'Junior Programmer'3                  when 'A2'  Then 'Intermediate Programmer'4                  when 'A3'  Then 'Senior Programmer'5                 Else 'Master of the Ashes level'6             End7  fromCoder

This type of writing can only be used to make equivalent judgments.

Note : In the Case...end statement, then the data type of the then face value must be consistent.

Usage of "case...end" in SQL Server

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.