Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: Multiple COUNT()s in one recordset


Message #1 by "Azinger, Richard" <richard.azinger@p...> on Sun, 26 Jan 2003 09:09:53 -0600
Hello List,

Can you get multiple COUNT()s in the same recordset?

And if you can, is this the right way to do it?

	SELECT 
		COUNT(AL.Answer) AS D1A1, 
		COUNT(A2.Answer) AS D1A2 
	FROM 
		personList P1, 
		AnswerList A1, 
		demoAnswerList D1, 
		personList P2, 
		AnswerList A2, 
		demoAnswerList D2 
	WHERE 
		P1.personID = D1.personID AND 
		P1.personID = A1.personID AND 
		P1.surveyID = 2 AND 
		D1.demoID = 4 AND 
		D1.demoAnswerInt = 1 AND 
		A1.questionID = 1 AND 
		A1.answerInt = 1 AND 
		P2.personID = D2.personID AND 
		P2.personID = A2.personID AND 
		P2.surveyID = 2 AND 
		D2.demoID = 4 AND 
		D2.demoAnswerInt = 1 AND 
		A2.questionID = 1 AND 
		A2.answerInt = 2"


I'm not sure if this is going to get the right information but I wanted to
know if the snytax was correct, or if you can even do, it before I went any
further.

Thanks in advance for any help,

Rich


This communication is for use by the intended recipient and contains 
information that may be privileged, confidential or copyrighted under
applicable law.  If you are not the intended recipient, you are hereby
formally notified that any use, copying or distribution of this e-mail,
in whole or in part, is strictly prohibited.  Please notify the sender
by return e-mail and delete this e-mail from your system.  Unless
explicitly and conspicuously designated as "E-Contract Intended",
this e-mail does not constitute a contract offer, a contract amendment,
or an acceptance of a contract offer.  This e-mail does not constitute
a consent to the use of sender's contact information for direct marketing
purposes or for transfers of data to third parties.

 Francais Deutsch Italiano  Espanol  Portugues  Japanese  Chinese  Korean

            http://www.DuPont.com/corp/email_disclaimer.html



  Return to Index