In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-13 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces the benefits of using the case method in mysql, which has certain reference value, and friends who need it can refer to it. I hope you all have a lot of success after reading this article. Let's take a look at it together.
The use of mysql case method benefits: 1, in the display of query results can be flexible organization format;2, effectively avoid multiple visits to the same table or several tables.
Benefits of using MySQL's case method:
The biggest advantage of using select and case in combination is that it can be organized flexibly when displaying query results, and the other is to effectively avoid multiple visits to the same table or several tables.
Here's a simple example. For example, the table students(id, name ,birthday, sex, grade) requires statistics on the number of boys and girls in each grade.
The heading of the statistical results is grade, number of boys, number of girls. If you don't use select case when, in order to display the number of men and women side by side, it is very troublesome to count, first determine the grade information, then take the number of boys and girls according to the grade, and it is easy to make mistakes.
Select case when written as follows:
SELECT grade, COUNT (CASE WHEN sex = 1 THEN 1 ELSE NULL END) Number of boys, COUNT (CASE WHEN sex = 2 THEN 1 ELSE NULL END) Number of girls FROM studentsGROUP BY grade; Thank you for reading this article carefully. I hope Xiaobian can share the benefits of using the case method in mysql. What content is helpful to everyone? At the same time, I hope everyone will support more. Pay attention to the industry information channel. When you encounter problems, find detailed solutions waiting for you to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 237
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.