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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T23:42:08+00:00 2026-06-12T23:42:08+00:00

I have a sql server 2008 db and focussed on two specific columns in

  • 0

I have a sql server 2008 db and focussed on two specific columns in a table of over 300 million records. I wanted to find duplicate records which the table has but disinguish from this result set how many and if any of the duplicates have a different field 2.
eg.

field 1: idUrl
field 2: assignedId

so for duplicates of course:

SELECT [idUrl]
       ,[assignedId]
FROM [Feeds].[dbo].[LogFeed]
group by idUrl, assignedId
having COUNT(entryId) > 1
order by entryid desc

So I want to find records where for any duplicates of idUrl are there any records where assignedId is not the same for the duplicate idUrls.

eg

 idUrl            assignedID
 www.google.com       10
 www.google.com       10
 www.google.com       10
 www.google.com        7
  • 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-12T23:42:10+00:00Added an answer on June 12, 2026 at 11:42 pm

    we can write in so many ways i am giving the sample try this one

    DECLARE @table table (idUrl varchar(100),assignedID int)
    INSERT INTO @table
    values(‘www.google.com’, 10),
    (‘www.google.com’, 10),
    (‘www.google.com’ , 10),
    (‘www.google.com’ , 7)

    SELECT idUrl, COUNT ( Distinct AssignedID )   FROM @table 
    Group By idUrl Having COUNT( Distinct AssignedID ) > 1 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have SQL Server 2008 database with two tables. The first table is called
I have SQL Server 2008 database with 2 tables: Table A has columns ID
I have SQL Server 2008 with a table called ProductCategories designed like this: Id
I have SQL Server 2008 Ent and OLTP database with two big tables. How
I have an SQL Server 2008 database with a table that has a column
I have two SQL Server 2008 databases called Anna and Bob . Bob has
I have sql server 2008 db table FILE_DETAILS in following format. ID FileName Filesize_in_MB
I have SQL Server 2008. I run a query in a table on a
We are using SQL Server 2008. We have a table called response which has
I was wondering if I have SQL Server 2008 table that was created 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.