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

  • Home
  • SEARCH
  • 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 102665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:00:05+00:00 2026-05-11T01:00:05+00:00

I have the following table and data in SQL Server 2005: create table LogEntries

  • 0

I have the following table and data in SQL Server 2005:

create table LogEntries (   ID int identity,   LogEntry varchar(100) )  insert into LogEntries values ('beans') insert into LogEntries values ('beans') insert into LogEntries values ('beans') insert into LogEntries values ('cabbage') insert into LogEntries values ('cabbage') insert into LogEntries values ('beans') insert into LogEntries values ('beans') 

I would like to group repeated LogEntries so that I have the following results:

LogEntry  EntryCount beans     3 cabbage   2 beans     2 

Can you think of any way to do this in TSQL outside of using a cursor?

  • 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. 2026-05-11T01:00:06+00:00Added an answer on May 11, 2026 at 1:00 am

    This is a set-based solution for the problem. The performance will probably suck, but it works 🙂

    CREATE TABLE #LogEntries (   ID INT IDENTITY,   LogEntry VARCHAR(100) )  INSERT INTO #LogEntries VALUES ('beans') INSERT INTO #LogEntries VALUES ('beans') INSERT INTO #LogEntries VALUES ('beans') INSERT INTO #LogEntries VALUES ('cabbage') INSERT INTO #LogEntries VALUES ('cabbage') INSERT INTO #LogEntries VALUES ('carrots') INSERT INTO #LogEntries VALUES ('beans') INSERT INTO #LogEntries VALUES ('beans') INSERT INTO #LogEntries VALUES ('carrots')  SELECT logentry, COUNT(*) FROM (     SELECT logentry,      ISNULL((SELECT MAX(id) FROM #logentries l2 WHERE l1.logentry<>l2.logentry AND l2.id < l1.id), 0) AS id     FROM #LogEntries l1 ) AS a GROUP BY logentry, id   DROP TABLE #logentries  

    Results:

    beans   3 cabbage 2 carrots 1 beans   2 carrots 1 

    The ISNULL() is required for the first set of beans.

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

Sidebar

Ask A Question

Stats

  • Questions 87k
  • Answers 87k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer OK, this tutorial gives good information on how to do… May 11, 2026 at 5:28 pm
  • Editorial Team
    Editorial Team added an answer Try this: for (var i = 0; i < element.attributes.length;… May 11, 2026 at 5:28 pm
  • Editorial Team
    Editorial Team added an answer I don't believe that the SQL-92 standard specifies that a… May 11, 2026 at 5:28 pm

Related Questions

I have the following table with data: tag dt value 1 2009/03/01 10.2 2
I have the following table in my database: CREATE TABLE [dbo].[XmlData]( [id] [int] IDENTITY(1,1)
I have the following Query and i need the query to fetch data from
I've already checked out the question Deleting duplicate records using a temporary table and

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.