Jump to content

[SOLVED] Tricky Query


bcoffin

Recommended Posts

table: member

---

id

name

zipcode

gender

 

 

table: trips

---

id

mid (member.id)

trip (could be 1 or 2: 1=domestic; 2=abroad)

 

 

I'd like to query to get:

member.name, member.id, count of domestic trips, count of abroad trips

 

I'm thinking:

SELECT

m.id as mid,

m.name,

count(t.trip)

FROM member m

LEFT JOIN trip t

ON m.id = t.mid

GROUP BY mid,trip

 

or something like that, to return:

 

{1, adam, 4, 2}

{2, barb, 7, 16}

{4, chris, 42, 2}

 

and so on..

 

 

 

 

 

Link to comment
Share on other sites

Sad that I couldn't come up with a single query...:(

But try this and post the result of each step.

 

DROP TEMPORARY TABLE IF EXISTS tmp_domestic;
CREATE TEMPORARY TABLE tmp_domestic SELECT mid,COUNT(trip) AS dom FROM trip WHERE trip = 1 GROUP BY mid;
DROP TEMPORARY TABLE IF EXISTS tmp_international;
CREATE TEMPORARY TABLE tmp_international SELECT mid,COUNT(trip) AS intern FROM trip WHERE trip = 2 GROUP BY mid;
SELECT m.id AS ID,m.name AS NAME,d.dom AS DOMESTIC,i.intern AS INTERNATIONAL FROM member m LEFT JOIN tmp_domestic d ON d.mid = m.id LEFT JOIN tmp_international i ON i.mid=m.id;

 

I'm hoping to see a better solution for this from our colleagues.

And also use code tags.

 

Link to comment
Share on other sites

Or maybe I'm supposed to use the SUM(IF(t.trip=1)) AS local, SUM(IF(t.trip=2)) AS domestic?

 

Yeah, something like this:

 


SELECT 
         m.id as "mid"
       , m.name
       , SUM(IF(t.trip = 1, 1, 0)) AS total_domestic_trips
       , SUM(IF(t.trip = 2, 1, 0)) AS total_abroad_trips

  FROM member m
LEFT JOIN trips t ON m.id = t.mid

GROUP BY 
    t.mid
;

 

Link to comment
Share on other sites

Or maybe I'm supposed to use the SUM(IF(t.trip=1)) AS local, SUM(IF(t.trip=2)) AS domestic?

 

Yeah, something like this:

 


SELECT 
         m.id as "mid"
       , m.name
       , SUM(IF(t.trip = 1, 1, 0)) AS total_domestic_trips
       , SUM(IF(t.trip = 2, 1, 0)) AS total_abroad_trips

  FROM member m
LEFT JOIN trips t ON m.id = t.mid

GROUP BY 
    t.mid
;

 

 

Just wondering ... what would be the overhead effect of that if the database got bigger?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.