Jump to content

select sum of distinct records


ToonMariner

Recommended Posts

I have a table of journeys..

 

journey_id sender_id recipient_id received distance

 

I need one query to select count of journeys, count of journeys where received is null and the sum of the distance...

 

this is what I have at the mo.

SELECT
COUNT(`journey`.`journey_id`) AS `sentNo` ,
COUNT(`t`.`journey_id`) AS `travelling` ,
SUM(`journey`.`distance`) AS `distance`
FROM
`journey`
LEFT JOIN
`users`
ON
`users`.`user_id` = `card_journey`.`sender`
LEFT JOIN
(SELECT * FROM `card_journey` WHERE `received` IS NULL) AS `t`
ON
`t`.`sender` = `users`.`user_id`
WHERE
`users`.`username` = :username

 

problem being of course that the sum of journeys sums up all values of the joins rather than teh distinct journeys themselves hence when the user has 2 journeys i get double the difference. 3 jurneys triple and so on...

 

Any pointers much appreciated

first to

 

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.