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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:16:17+00:00 2026-05-27T04:16:17+00:00

SQL Table id component price manufactured 1 fx card 500 2011 2 ram 400

  • 0

SQL Table

id       component   price  manufactured
1         fx card   500     2011
2         ram       400     2010
3         case      400     2010
4         smps      500     2011
5         cord      200     2010
6         usb       200     2010

Expected output (Return components of same price and manufactured yr as distinct combinations):

component   component   price   manufactured
smps        fx card     500     2011
case        ram         400     2010
cord        usb         200     2010

Query tried

SELECT m1.[component]
  ,m2.[component]
  ,m1.[price]
  ,m1.[manufactured]
FROM [dbo].[Mfg] m1
inner join [dbo].[Mfg] m2
on m1.component != m2.component 
and m1.price = m2.price 
and m1.manufactured = m2.manufactured

Result from above query (wrong output though):

component   component   price   manufactured
smps        fx card     500    2011
case        ram         400    2010
cord        usb         200    2010
ram         case        400    2010
fx card     smps        500    2011
usb         cord        200    2010

Please help me eliminating the duplicate combos using the query.

  • 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-05-27T04:16:18+00:00Added an answer on May 27, 2026 at 4:16 am

    This works if no pairs of components share the same name:

    SELECT m1.[component]
          ,m2.[component]
          ,m1.[price]
          ,m1.[manufactured]
    FROM [dbo].[Mfg] m1
    JOIN [dbo].[Mfg] m2 ON m1.component > m2.component 
                       AND m1.price = m2.price 
                       AND m1.manufactured = m2.manufactured;
    

    All I changed was to trade the inequality operator != for a greater than operator. This way you get every pair once instead of twice.

    To provide for the possibility of identical names:

    JOIN [dbo].[Mfg] m2 ON m1.id > m2.id
                       AND m1.price = m2.price 
                       AND m1.manufactured = m2.manufactured;
    

    I assume id is unique, so it can’t go wrong.

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

Sidebar

Related Questions

I have to write a component that re-creates SQL Server tables (structure and data)
My sql table is something like (message,created) I want to select those rows which
My SQL table has 2 fields that impact my problem: Priority as real, and
I search my sql table using in: videos.category in ($categoriesSelected) I pass through the
I have a SQL table with news stories and Unix timestamps. I'd like to
I have a T-SQL table variable (not a table) which has an auto incrementing
I have a SQL table which has a number of fields ID | Value
I have a MS SQL table that I don't have any control over and
I am modifying a SQL table through C# code and I need to drop
I have a SQL table like so: Update: I'm changing the example table as

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.