Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8594037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:07:01+00:00 2026-06-12T00:07:01+00:00

I have a table Employees with Managers and Reps in it. I would want

  • 0

I have a table Employees with Managers and Reps in it. I would want a stored procedure that can get Manager 1 (alphabetic order) and then all Reps under that Manager1 (in alphabetic order) and then Manager 2 and all Reps under the Manager2.

There is a Column ‘Manager’ for all Employees with EmployeeID of Manager in that column for each Rep and null for Managers. And there is also a column ismanager which will be 1 for Managers and 0 for reps.

I tried doing it but the logic is somewhere incorrect. this is in SQL Server 2005.

Thank you in advance!!

Select * from Employees
groupby IsManager, EmployeeID
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T00:07:02+00:00Added an answer on June 12, 2026 at 12:07 am

    What you want to do is order by the manager id and then order by ismanager desc.
    Since the manager does not have his own id in the manager column you have use a case statement to fix that. Here are two examples of how to do it in SQL:

    WITH fixup AS
    (
       SELECT CASE MANAGER = 0 THEN EMPLOYEEID ELSE MANAGER END as ManGroup, *
       FROM Employees
    )
    SELECT * from fixup
    ORDER BY ManGroup, ismanager DESC
    

    or

    SELECT * 
    FROM Employees
    ORDER BY CASE MANAGER = 0 THEN EMPLOYEEID ELSE MANAGER END, ismanager DESC
    

    nb — not tested might have typos.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have 2 Tables 1)Table Positions pos_id, pos_description, pos_total(maximum # of employees for that
Suppose I have table Person table Employee, which inherits Person. I want to get
I have 3 tables employees , managers , users . I want to insert
I have an employees table in a database, and I want to link an
Suppose I have a recursive table (e.g. employees with managers) and a list of
I have a typical self-referencing table of employees. How can you build an UDF
I have a table of employees. Each employee has a manager, and each manager
I have a very basic table that consists of worker names and manager names:
I have a database with a EMPLOYEES table that has the following columns: (EmpID
I have an employee table that displays the employee number, name, and manager's employee

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.