How to Use Case in SQL (Part 1)

Source: Internet
Author: User
Case has two formats. Simple case functions and case search functions.

-- Simple case function case sex when '1' then' male 'when' 2' then' female 'else' other 'ends -- case search function case when sex = '1' then' male 'when sex = '2' then' female 'else' others' end

These two methods can achieve the same function. Simple case functions are relatively simple in writing, but compared with case search functions, there are some functional limitations, such as writing case functions.

Note that the case function returns only the first value that meets the condition, and the rest of the case will be automatically ignored.

-- For example, in the following SQL statement, you will never get the result of the "second type" case when col_1 in ('A', 'B ') then 'first class 'when col_1 in ('A') then' Second Class 'else' additional 'end'

Let's take a look at what we can do with the case function.

1. Known Data is grouped and analyzed in another way.

There are the following data: (for better understanding, I did not use country code, but directly use the country name as the primary key)

Country) Population (Population)
China 600
USA 100
Canada 100
UK 200
France 300
Japan 250
Germany 200
Mexico 50
India 250

The population of Asia and North America is counted based on the population data of this country. The following result is returned.

Continent Population
Asia 1100
North America 250
Others 700

What do you do if you want to solve this problem? Generating a view with continent code is a solution, but it is difficult to dynamically change the statistical method.

If the case function is used, the SQL code is as follows:

Select sum (Population ), case country when 'China' then' Asia 'when' India 'then' Asia 'when' Japan 'then' Asia 'when' USA 'then' North America 'when' Canada 'then' north America 'when' Mexico 'then' North America 'else' miscellaneous 'endfrom table_agroup by case country when' China 'then' Asia 'when' India 'then' Asia 'when' Japan 'then 'Asian 'when' 'then' North America 'when' Canada 'then' North America 'when' Mexico 'then' North America 'else' other 'ends;

Similarly, we can use this method to determine the wage level and count the number of people at each level. The SQL code is as follows;

SELECT        CASE WHEN salary <= 500 THEN '1'             WHEN salary > 500 AND salary <= 600  THEN '2'             WHEN salary > 600 AND salary <= 800  THEN '3'             WHEN salary > 800 AND salary <= 1000 THEN '4'        ELSE NULL END salary_class,        COUNT(*)FROM    Table_AGROUP BY        CASE WHEN salary <= 500 THEN '1'             WHEN salary > 500 AND salary <= 600  THEN '2'             WHEN salary > 600 AND salary <= 800  THEN '3'             WHEN salary > 800 AND salary <= 1000 THEN '4'        ELSE NULL END;

2. Use an SQL statement to group different conditions.

The following data is available:

Country) Sex) Population (Population)
China 1 340
China 2 260
USA 1 45
USA 2 55
Canada 1 51
Canada 2 49
UK 1 40
UK 2 60

Group by country and gender. The result is as follows:

Country Male Female
China 340 260
USA 45 55
Canada 51 49
UK 40 60

In normal cases, union can also be used to query with a statement. However, this will increase the consumption (two select clauses), and the SQL statement will be relatively long.

The following is an example of using the case function to complete this function.

Select Country, sum (case when sex = '1' then population else 0 end), -- male population sum (case when sex = '2' then population else 0 end) -- female population from table_agroup by country;

In this way, select is used to complete the output form of the explain table, which fully shows the power of the Case function.

3. Use the case function in check.

Using the case function in check is a good solution in many cases. There may be a lot of people who don't need check at all, so I suggest you try to use check in SQL after reading the example below.

The following is an example.

Company A, the company has a rule that the wages of female employees must be higher than 1000 yuan. If you use check and case

CONSTRAINT check_salary CHECK           ( CASE WHEN sex = '2'                  THEN CASE WHEN salary > 1000                        THEN 1 ELSE 0 END                  ELSE 1 END = 1 )

If you simply use check, as shown below:

CONSTRAINT check_salary CHECK           ( sex = '2' AND salary > 1000 )

The conditions of the female employee are met, and the male employee cannot enter the information.

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.