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 7777525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:09:53+00:00 2026-06-01T18:09:53+00:00

Good Day, I have a sql query that returns the following data: EmployeeID…Employee 555……….John

  • 0

Good Day,

I have a sql query that returns the following data:

EmployeeID...Employee
555..........John Doe
666..........Jane Doe
777..........Bob Smith
888..........Jane Smith
999..........Fred Jones
000..........Freda Jones

and I want my query to group by items of three:

Item.........EmployeeId........Employee
1............555...............John Doe
1............666...............Jane Doe
1............777...............Bob Smith
2............888...............Jane Smith
2............999...............Fred Jones
2............000...............Freda Jones

In other words, for every record that has more than 3 records, I want to increment Item by one every three records..

I am sure that I can use some sort of row insert into a table and keep track of the number of rows inserted into a table. But I’m trying to see if I can pull this off in SQL itself.

Is this possible?

TIA,

coson

  • 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-01T18:09:54+00:00Added an answer on June 1, 2026 at 6:09 pm

    If your database’s SQL variety supports ranking functions, you could try something like this:

    SELECT
      FLOOR((ROW_NUMBER() OVER (ORDER BY EmployeeID) + 2) / 3) AS Item,
      EmployeeID,
      Employee
    FROM Employees
    ORDER BY EmployeeID
    

    Some database systems automatically perform integral division when both operands are integers, others support a dedicated operator (like DIV) for integral division instead of /. In both mentioned cases FLOOR() would be unnecessary, of course.

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

Sidebar

Related Questions

I have the following LINQ query that I need to translate to Entity SQL
Good day everyone, I have the following XML data : <?xml version=1.0 encoding=utf-8 ?>
Good day, If I have for example the documents which have the following fields
Good day, I have the following problem: class B extends class A and methods
Good day to all, I have the following problem I have to convert the
Good day, I have a library project that i use to create a paid
Good day to all. I have the following setup: A page with html, js,
Good day! I am having a problem in showing the data that I need
Good day, In SQL Server 2005, I have a table numerous columns, including a
Good day, In SQL Server 2005, when I write a new query, I like

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.