Advertisement

Check out our new and improved Advanced Search! We have added additional search options and the ability to save your searches.
 
Enter Keywords:
 
1 - 10 of 893(0.001 seconds)
[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.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

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!

6.2
Hi, I'm not sure why I get doubles in my result set when I make DISTINCT in the SQL statement? --------- select DISTINCT Sale from SoftwareFinal where Sale<>-1 --------- when I display the ...
Zones: ASPDate Answered: 01/01/2001 Views: 0
I have a table that i am doing distinct on the employee name, but I want to return all the other columns, how can i do this in the select statement? select distinct(empno) from employee. sele...
Zones: OracleDate Answered: 06/11/2002 Views: 0
This works: 1. SELECT  DLookUp("sex","p_a_sex","[ID] = " & "" & [RESPONDENTS.SEX] & "") AS Gender FROM Respondents; This doesn't: 2. SELECT DISTINCT  DLookUp("sex","p_a_sex","[ID] = " & "" & ...
Zones: MS AccessDate Answered: 11/24/2003 Views: 0
here's my problem: i have a table which lists players scores and it has the following format id,userid,nickname,score,... etc each score entry is added to the last score and inserted into ...
Zones: MySQL ServerDate Answered: 10/29/2003 Views: 0
hI!  I'm having a bit of a problem using the SHAPE command.  I have tables Vendors     Product          ProductType          Quantity -------          -------                  -------          ...
Zones: MS AccessDate Answered: 06/14/2004 Views: 0
I have one xml file which looks like... <DataItems>         <Count>8</Count>         <DataItem>                 <dvalue>Beverages</dvalue>                 <dvalue>Aniseed Syrup</dvalue>    ...
Zones: XMLDate Answered: 05/13/2004 Views: 0
I want to select several fields from a table using distinct but I only want the first three to use the distinct. Is there a way to do this or would I have to use sub query?
 
Related Solutions:
Select query returns more than one row

I want to retrieve "selected" rows from 7 different tables (as per code below) and want the resul...

Rating: 9.3
 
Zones: OracleDate Answered: 09/23/2004 Views: 0
    select distinct p.vol_id,              p.title,                p.first_name,              p.last_name              From              vmis.person p,             (select vol_id, activi...
Zones: OracleDate Answered: 06/16/2004 Views: 0
i have two sql and i am trying to get them as one and display the results the 1st returns a name select distinct name from  data and num=1234; this will return name --------- henri...
Zones: OracleDate Answered: 06/21/2004 Views: 0
I am trying to insert records into a table where studentid is the primary key.  Therefore, I need to retreive records where the studentid is unique.  The query I have posted is not working: SELE...
Zones: MS SQL ServerDate Answered: 07/03/2004 Views: 0