Database implementation row and column conversion (Mysql example) _mysql

Source: Internet
Author: User

This article through the SQL sample code to introduce the MySQL database how to achieve row and column conversion, the following words not to say, directly to see the sample code.

Original table:

Table name: User
----------------------------------------
name    | course  | grade
--------------------- -------------------
Zhangsan  | Java   |
----------------------------------------
Zhangsan  | C + +
----------------------------------------
Lisi    | java   |
---------------- ------------------------
Lisi    | C #
----------------------------------------

Use an SQL statement to get the following form:

----------------------------------------
name   | java | C + + | C #----------------------------------------Zhangsan | |-  null
------------------- ---------------------Lisi | |-   NULL |
----------------------------------------

Programme I

Select  name,
sum (case when course= ' Java ' then grade end) as Java,
sum (case when course= ' C + + ' then grade end) a S C + +,
sum (case when course= ' C # ' then grade end) as C # from
test GROUP by name

Programme II

SELECT DISTINCT c. ' Name ' as name,
(select grade from test where name = C. ' name ' and course = ' java ') as Java,
(SE Lect grade from test where name = C. ' name ' and course = ' C + + ') as C + +,
(select grade from test where name = C. ' Name ') and course = ' C # ') as C # from
test C

Summarize

The above is the entire content of this article, I hope the content of this article for everyone's study or work can have some help, if there is doubt you can message exchange.

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.