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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:18:01+00:00 2026-06-11T13:18:01+00:00

I want to group the data from one of the tables in a SQL

  • 0

I want to group the data from one of the tables in a SQL database. The field to be used for grouping is numerical and the groups I want do not follow any mathematical formula e.g.

Group 0 value unknown (NULL)

Group 1 values 0 – 499

Group 2 value 500 – 999

Group 3 value 1000 – 1999

Group 4 value 2000 – 4999

Group 5 value 5000 +

How can I achieve this with TSQL?

By the way I want to do this to display in a Crystal Report, so if there is a better way of doing this in Crystal Reports rather than through the SQL Select statement then please advise.

  • 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-11T13:18:02+00:00Added an answer on June 11, 2026 at 1:18 pm

    You can use a case to create a custom group. If you define the case in a subquery, you don’t have to repeat the definition:

    select  Grp
    ,       sum(col2)
    ,       avg(col3)
    from    (
            select  case
                    when col1 is null then 0
                    when col1 between 0 and 499 then 1
                    when col1 between 500 and 999 then 2
                    ...
                    end as Grp
            ,       *
            ) as SubQueryAlias
    group by
            Grp
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to export data from a SQL database (some groups use SQL Server,
I have a table in SQL 2005 that I want to aggregate data from,
I am trying to make one query, to get some statistic data from database.
I have two database tables containing similar data - one is the amount of
I want to implement some code in excel macro to group some data for
I have some data that has various attributes and I want to hierarchically group
I want to load the list of the groups as well as data into
I want to group an sql statement by a column alias. In essense, I
I want to group every date that it is in the database and get
I want to group the common methods in one file and use it. For

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.