Results 1 to 6 of 6

Thread: [RESOLVED] selecting top n rows where appears the most

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2009
    Posts
    273

    Resolved [RESOLVED] selecting top n rows where appears the most

    I am running a select statement on an orders table (sql) . I want to select the top 5000 of the items that sold the most.- where the count of the item name appears the most.
    How do I go about this?
    thank you.

  2. #2
    A SQL Server fool GaryMazzone's Avatar
    Join Date
    Aug 2005
    Location
    Dover,NH
    Posts
    7,493

    Re: selecting top n rows where appears the most

    What is the table structure like? Basicly it is a Top N Order By Count(*)
    Sometimes the Programmer
    Sometimes the DBA

    Mazz1

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2009
    Posts
    273

    Re: selecting top n rows where appears the most

    Just ordernumber, itemid, itemname, date....
    I need to select the top 5000 itemids which sold the most(appear the most in the table.)
    thank you.

  4. #4
    A SQL Server fool GaryMazzone's Avatar
    Join Date
    Aug 2005
    Location
    Dover,NH
    Posts
    7,493

    Re: selecting top n rows where appears the most

    try this:
    sql Code:
    1. Select Top 5000 itemid,itemname,ordernumber,count(*) from tableName Group by itemid,itemname,ordernumber Order by count(*) desc
    Sometimes the Programmer
    Sometimes the DBA

    Mazz1

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2009
    Posts
    273

    Re: selecting top n rows where appears the most

    thank you.

  6. #6
    A SQL Server fool GaryMazzone's Avatar
    Join Date
    Aug 2005
    Location
    Dover,NH
    Posts
    7,493

    Re: [RESOLVED] selecting top n rows where appears the most

    You might want to leave off OrderNumber there... I think it will mess up the results.
    Sometimes the Programmer
    Sometimes the DBA

    Mazz1

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width