MySQL horizontal and vertical table conversion operation implementation method

MySQL horizontal and vertical table conversion operation implementation method

This article uses examples to illustrate how to implement the conversion operations between MySQL horizontal and vertical tables. Share with you for your reference, the details are as follows:

First create a score table (vertical table)

create table user_score
(
  name varchar(20),
  subjects varchar(20),
  score int
);
insert into user_score(name,subjects,score) values('张三','语文',60);
insert into user_score(name,subjects,score) values('张三','数学',70);
insert into user_score(name,subjects,score) values('张三','英语',80);
insert into user_score(name,subjects,score) values('李四','语文',90);
insert into user_score(name,subjects,score) values('李四','数学',100);

Create another score table (horizontal table)

create table user_score2
(
  name varchar(20),
  yuwen int,
  shuxue int,
  yingyu int
);
insert into user_score2(name,yuwen,shuxue,yingyu) values('张三',60,70,80);
insert into user_score2(name,yuwen,shuxue,yingyu) values('李四',90,100,0);

Convert vertical table to horizontal table

select name,sum(case subjects when 'Chinese' then score else 0 end) 
as 'Chinese',sum(case subjects when 'Mathematics' then score else 0 end) 
as 'Mathematics', sum(case subjects when 'English' then score else 0 end) 
as 'English'from user_score group by name;

Convert vertical table to horizontal table

SELECT name,'yuwen' AS subjects,yuwen AS score FROM user_score2 UNION ALL  
SELECT name,'shuxue' AS subjects,shuxue AS score FROM user_score2 UNION ALL  
SELECT name,'yingyu' AS subjects,yingyu AS score FROM user_score2 
ORDER BY name,subjects DESC; 

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Mysql vertical table conversion to horizontal table method and optimization tutorial

<<:  Vue+Openlayer uses modify to modify the complete code of the element

>>:  Example of troubleshooting method to solve Nginx port conflict

Recommend

Sample code for highlighting search keywords in WeChat mini program

1. Introduction When you encounter a requirement ...

How to use vue filter

Table of contents Overview Defining filters Use o...

Docker uses root to enter the container

First run the docker container Run the command as...

Summary of the use of Datetime and Timestamp in MySQL

Table of contents 1. How to represent the current...

Basic knowledge: What does http mean before a website address?

What is HTTP? When we want to browse a website, w...

No-nonsense quick start React routing development

Install Enter the following command to install it...

Detailed explanation of CSS line-height and height

Recently, when I was working on CSS interfaces, I...

Share some uncommon but useful JS techniques

Preface Programming languages ​​usually contain v...

Mini Program to Implement Slider Effect

This article example shares the specific code for...

Mysql: The user specified as a definer ('xxx@'%') does not exist solution

During the project optimization today, MySQL had ...

Common pitfalls of using React Hooks

React Hooks is a new feature introduced in React ...