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;m trying to automate the exporting of data from an sql server table to
I'm looking for a tool or component that generates flat files given a SQL
I'm trying to import an 82k+ row table from an access db to SQL
I have three tables: Context, Component and ComponentContext. The ComponentContext table links the Component
I have to write a component that re-creates SQL Server tables (structure and data)
I am making a SQL script editor / executor component for my application, very
Problem: SQL Server table is vertical grid with options, i want the same thing
I am using asp.net 2.0 and have a different Sql Database table schema for
I'm building a game for learning Cantonese. A core component is a database table
We have an application written in Delphi 2010 which connects to SQL Server Database.

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.