Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I hope the question is clear enough.

Here's my query:

SELECT
    'Total Complete' AS name, count(c.id) AS amnt
FROM
    lanes AS c
      LEFT JOIN leads AS l
        ON ((c.carrier_mcn = l.authority_number
              AND l.authority_type = 'mc')
          OR c.carrier_mcn = l.mcn
          OR c.carrier_mcn = CONCAT('MC', l.authority_number))
          AND c.carrier_mcn <> 0
  LEFT JOIN lanes_emails AS cem1
    ON cem1.cid = c.id AND cem1.deleted = 0
  LEFT JOIN lanes_emails AS cem2
    ON cem1.cid = cem2.cid AND cem2.deleted = 0 AND cem2.id < cem1.id
  LEFT JOIN lanes_equipment AS ceq1
    ON ceq1.cid = c.id AND ceq1.deleted = 0
  LEFT JOIN lanes_equipment AS ceq2
    ON ceq1.cid = ceq2.cid AND ceq1.deleted = 0 AND ceq2.id < ceq1.id
  LEFT JOIN lanes_service_area AS csa1
    ON csa1.cid = c.id AND AND flag = 2 csa1.deleted = 0
  LEFT JOIN lanes_service_area AS csa2
    ON csa1.cid = csa2.cid AND AND flag = 2 csa1.deleted = 0 AND csa2.id < csa1.id
WHERE
    c.carrier_mcn IS NOT NULL and c.carrier_mcn <> ''
    AND c.broker_mcn IS NOT NULL and c.broker_mcn <> ''
    AND c.fax IS NOT NULL and c.fax <> ''
    AND cem2.id IS NOT NULL
    AND ceq2.id IS NOT NULL
    AND csa2.id IS NOT NULL

Now what I'm trying to do here is get the total count of rows from "lanes" where it has at least one email, equipment, service area, mc number, or fax number. There are two MC Numbers, but they're both on the same table; the main issue is that there can be unlimited emails, equipment, and service areas.

In this case, I starting writing out an article about this issue and discovered another similar problem:

MySQL: Can I do a left join and pull only one row from the join table?

So I tried it out and implemented it into my query. Unfortunately, it didn't work the way I had planned.

It would work fine if I had more than one row; it would get the correct count, ignoring the fact that I had multiple emails or whatnot, but it would NOT work if there was only one. Instead, it returned no results.

No, I cannot use GROUP BY to get the results I need; I've tried GROUP BY, I love using it when returning full result lists, but if I'm trying to return counts GROUP BY repeatedly messes me up.

Is there any way to force a join in mysql to return just one row without using a subquery? I only need to know if there is one item from any of these other tables, I don't need to return everything, and I don't know of a way to program it to work through the WHERE clause.

I need this query for a bar chart. I've actually got several of these queries; this one is the one that requires all results, but I have others for no requirements, at least one email, at least one mc number, etc., but if I can get this working I can get the rest working.

share|improve this question

2 Answers

up vote 1 down vote accepted

You could use an exists clause:

where   exists 
        (
        select  *
        from    lanes_emails AS cem1
        where   cem1.cid = c.id 
                and cem1.deleted = 0
        )
        and exists
        ...
share|improve this answer
I've never even heard of an exists clause. -_- Well I'll take a look and see if that will work. Thanks for the tip. – jrConway Aug 11 '12 at 19:13
Come to think of it I didn't notice it was in the WHERE clause of the main query until now. I didn't think there was a way I could do what I needed entirely in the WHERE clause, but I'll try this out and see if it works. – jrConway Aug 12 '12 at 0:38
Well, this appears to be working okay. I was hoping to do it right in the join if possible, but as long as I get it to work, okay, no problem. I just didn't think I could get it to work controlling it all in the WHERE clause of the main query... – jrConway Aug 12 '12 at 2:23

suppose there are 2 tables table1 and table2

 t1-  c1,c2,c3
 t1-  c4,c5,c2

thenn write

select t1.c1,t1.c2,t2.c3,t2.c4,t2.c5 from table1 t1 left outer join table2 t2 on(t1.c2=t2.c2)
where rowwnum=1;

it will show only data from 1st row...

you can also visit below link

http://www.oracletrainingpune.blogspot.in/

share|improve this answer
In the future when you answer questions, can you please check how old they are? And especially check and see if the question already has an accepted answer. This question was posted and answered eight months ago. Even if it was unanswered I don't even need the answer anymore. On another note, the answer wouldn't even solve the problem anyway. Also, my question clearly says that this is MySQL, not Oracle. – jrConway Apr 10 at 21:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.