Advertisement
Advertisement
| 07.23.2008 at 08:53AM PDT, ID: 23588969 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: |
ThisPublication = Request.QueryString("Pub_c_PubId");
query = "SELECT x.Reps_Rep, x.Reps_Assignmentdate, x.Reps_Assignmentstatus, COUNT(advert_advertid) AS NoOfAds FROM Advert a, ExReps x WHERE a.advert_publicationid="+ThisPublication+" AND a.advert_rep=e.reps_rep AND Reps_Rep IN (SELECT * FROM ExReps e WHERE e.reps_publicationid="+ThisPublication+");
//This errors saying: ExReps.Reps_Rep is invalid in the select list because it is not contained in either an aggregate
//function or the Group By clause
|