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:
|
<<: Vue+Openlayer uses modify to modify the complete code of the element
>>: Example of troubleshooting method to solve Nginx port conflict
1. Introduction When you encounter a requirement ...
Table of contents Overview Defining filters Use o...
Table of contents Precautions Necessary condition...
First run the docker container Run the command as...
<br />Based on the original width-and-height...
Table of contents 1. Simple to use 2. Use DISTINC...
Table of contents 1. How to represent the current...
What is HTTP? When we want to browse a website, w...
Install Enter the following command to install it...
Set the table's style="table-layout:fixed...
Recently, when I was working on CSS interfaces, I...
Preface Programming languages usually contain v...
This article example shares the specific code for...
During the project optimization today, MySQL had ...
React Hooks is a new feature introduced in React ...