Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
316 views
in Technique[技术] by (71.8m points)

sql - Select column with the most entries of a specific value in mySQL & Python

How would I find the column with the most entries of a specific value in a mySQL database with Python?

I have the following table:

| product |    id1    |    id2    |    id3    |
-----------------------------------------------
| apple   | 'ordered' |           | 'ordered' |
| banana  |           |           |      ?    |
| bread   | 'ordered' | 'ordered' |           |
| milk    | 'ordered' |           | 'ordered' |

How can I find out which column has the most 'ordered' strings in it?

In this case it would be the column with the name 'id1'.

question from:https://stackoverflow.com/questions/65649272/select-column-with-the-most-entries-of-a-specific-value-in-mysql-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use count as follows:

Select case when greatest(id1,id2,id3) = id1 then 'id1' 
            When greatest(id1,id2,id3) = id2 then 'id2'
            else 'id3' end grt 
  From
(Select count(case when id1 = 'ordered' then 1 end) as id1,
       count(case when id2 = 'ordered' then 1 end) as id2,
       count(case when id3 = 'ordered' then 1 end) as id3
  From t) t

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...