Jump to content

query to count and find percentages of


jdubwelch

Recommended Posts

here's my table:

pickstable.png

 

Let's say we're talking about game 1 (G1):

I want to get three things in one query:

1. The total number of picks made >>  [ SELECT COUNT(G1) AS total FROM `picks` ] will get  me that

 

Can i combine that with:

2. The total number of times team 1 was picked ( the 1's in the G1 column) >> I can use "SELECT COUNT(G1) AS AwayTeamTotal FROM `picks` WHERE G1 = 1"

3. The total number of times team 2 was picked ( the 2's in the G1 column) >> I can use "SELECT COUNT(G1) AS HomeTeamTotal FROM `picks` WHERE G1 = 2"

 

Is there a way to get all those queries into one, just so i don't have to go to it three times? 

 

Link to comment
https://forums.phpfreaks.com/topic/81883-query-to-count-and-find-percentages-of/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.