Assuming result of first query in A) (envelopecontrolnumber,partnerid,docfileid) = (000000400, 31,35)

A)

select envelopecontrolnumber, partnerid, docfileid 
from envelopeheader 
where envelopeid ='LT01ENV1107010000050';

select count(*) 
from envelopeheader 
where envelopecontrolnumber = '000000400' 
  and partnerid= 31 and docfileid<>35 ;

or

B)

select count(*)  
from envelopeheader a 
join envelopeheader b on a.envelopecontrolnumber = b.envelopecontrolnumber 
                       and a.partnerid= b.partnerid 
                       and a.envelopeid = 'LT01ENV1107010000050' 
                       and b.docfileid <> a.docfileid;

I am using the above query in a sql function. I tried the queries in pgAdmin(postgres), it shows 16ms for A) and B). When I tried queries from B) separately on pgadmin. It still shows 16 ms separately for each one - making 32ms for B) - Which is wrong because when you run both the queries in one go from B), it shows 16 ms. Please suggest which one is better. I am using postgres database.

link|improve this question

1  
The exact result you want is just a count or something more? – niktrs Jul 1 '11 at 6:43
@niktrs -postgres – Sanjeev Kumar Dangi Jul 1 '11 at 7:20
feedback

4 Answers

up vote 5 down vote accepted

The time displayed includes time to :

  • send query to server
  • parse query
  • plan query
  • execute query
  • send results back to client
  • process all results

Try a simple query like "SELECT 1". You'll probably get 16 ms too.

It's quite likely you are simply measuring the ping time to your server.

If you want to know how much time on the server a query uses, you need EXPLAIN ANALYZE.

link|improve this answer
Thanks peufeu. Yup it is telling ping time to server. You are correct. I used EXPLAIN ANALYZE. Results are A)0.034 ms+0.069 ms = 103ms and B)0.132 ms. So first one performs better. Now just need to analyse the execution plan of both queries. :P – Sanjeev Kumar Dangi Jul 1 '11 at 7:14
@Sanjeev: Do you have an index on (envelopecontrolnumber, partnerid) ? – ypercube Jul 1 '11 at 7:22
As mentioned by ypercube -"There is an overhead for sending a query to the db and getting results back". We should add some overhead in A). As there are two queries we are fetching results twice but in B) only once. – Sanjeev Kumar Dangi Jul 1 '11 at 7:28
@ypercube. There are indices on envelopeid, partnerid and docfileid – Sanjeev Kumar Dangi Jul 1 '11 at 7:31
1  
"A)0.034 ms+0.069 ms = 103ms and B)0.132 ms" ==> with these very small times which are difficult to measure accurately it's not really possible to tell for sure which is faster. Using one query certainly makes less wasted roundtrips. – peufeu Jul 1 '11 at 8:33
show 4 more comments
feedback

Option 1:

 Run query A.
 Get results.

 Use these results to create query B.

 Send query B.
 Get results.

Option 2:

 Run combined query AB.
 Get results.

So, if you are using this from a client, connecting to Postgres, use the second option. There is an overhead for sending a query to the db and getting results back.

If you are using it inside an SQL function or procedure, the difference is probably negligible. I would still use the second option though. And in either case, I would check that queries B or AB are optimized (checked query plan, if indexes are used, etc).

link|improve this answer
feedback

Go option 1: the two queries are unrelated, so more efficient to do them separately.

link|improve this answer
1  
How are they unrelated? The second query uses the result of the first one as input. – Thilo Jul 1 '11 at 6:51
Apologies - I missed that point. I would probably join them into one query then. – Bohemian Jul 1 '11 at 10:11
feedback

Option A will be faster since you are interested in the count.

The join will create a temporary structure for join the data based on conditions and then performs the counting operation. Hence option A is better and faster.

link|improve this answer
Thanks for your response. But, you are wrong. Interest in count doesn't differentiate anything in both cases. – Sanjeev Kumar Dangi Jul 1 '11 at 7:17
feedback

Your Answer

 
or
required, but never shown

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