How to convert MySQL horizontally to vertically and vertically to horizontally

How to convert MySQL horizontally to vertically and vertically to horizontally

Initialize Data

DROP TABLE IF EXISTS `test_01`;
CREATE TABLE `test_01` (
 `id` int(0) NOT NULL,
 `user` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'User',
 `km` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'Subject',
 `fs` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'Score',
 `time` datetime(0) NULL DEFAULT NULL COMMENT 'time',
 PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;

INSERT INTO `test_01` VALUES (1, '小三', '语文', '98', '2020-08-06 15:51:21');
INSERT INTO `test_01` VALUES (2, '小三', '数学', '90', '2020-07-01 15:51:25');
INSERT INTO `test_01` VALUES (3, '小三', '英语', '77', '2020-06-01 15:51:28');
INSERT INTO `test_01` VALUES (4, '小等', '英语', '78', '2020-06-01 15:51:28');

1. Horizontal to vertical arrangement

SELECT 
	user,
	SUM( CASE WHEN km = "Chinese" THEN fs ELSE 0 END ) "Chinese",
	SUM( CASE WHEN km = "Mathematics" THEN fs ELSE 0 END ) "Mathematics",
	SUM( CASE WHEN km = "English" THEN fs ELSE 0 END ) "English" 
FROM
	test_01 
GROUP BY user

insert image description here

2. Vertical to horizontal arrangement

SELECT km FROM test_01 WHERE id = 1 
UNION 
SELECT fs FROM test_01 WHERE id = 1 

insert image description here

This is the end of this article about how to convert MySQL horizontally to vertically and vertically to horizontally. For more information about how to convert MySQL horizontally to vertically and vertically to horizontally, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL horizontal and vertical table conversion operation implementation method

<<:  Detailed tutorial on distributed operation of jmeter in docker environment

>>:  Implementation of fastdfs+nginx cluster construction

Recommend

HTTP header information interpretation and analysis (detailed summary)

HTTP Header Explanation 1. Accept: Tells the web s...

Summary of Operator Operations That Are Very Error-Prone in JavaScript

Table of contents Arithmetic operators Abnormal s...

Implementation of WeChat applet message push in Nodejs

Select or create a subscription message template ...

HTML input file control limits the type of uploaded files

Add an input file HTML control to the web page: &...

Linux uses iptables to limit multiple IPs from accessing your server

Preface In the Linux kernel, netfilter is a subsy...

Steps for IDEA to integrate Docker to achieve remote deployment

1. Enable remote access to the docker server Log ...

Implementation of Docker deployment of Django+Mysql+Redis+Gunicorn+Nginx

I. Introduction Docker technology is very popular...

Analysis of Mysql transaction characteristics and level principles

1. What is a transaction? A database transaction ...

Detailed explanation of nginx request header data reading process

In the previous article, we explained how nginx r...

JavaScript quickly implements calendar effects

This article example shares the specific code of ...

MySQL DeadLock troubleshooting full process record

【author】 Liu Bo: Senior Database Manager at Ctrip...

MySQL merges multiple rows of data based on the group_concat() function

A very useful function group_concat(), the manual...

Tutorial on installing and configuring MySql5.7 in Alibaba Cloud ECS centos6.8

The default MySQL version under the Alibaba Cloud...

Detailed Introduction to the MySQL Keyword Distinct

Introduction to the usage of MySQL keyword Distin...