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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:53:49+00:00 2026-06-12T20:53:49+00:00

SELECT * FROM test; a | b —+— 1 | 5 4 | 1

  • 0
SELECT * FROM test;
 a | b 
---+---
 1 | 5
 4 | 1
 2 | 5
 3 | 3
 1 | 1
(5 rows)

How can i write such query, so all output values in “a” column are distinct and all output values in “b” column are also distinct.

So, for example, valid result set for above query is:

 1 | 5
 4 | 1
 3 | 3

Next one is also valid:

 4 | 1
 2 | 5
 3 | 3

It is better to find as many results as possible, but it’s not a requirement.
What is the best way to do that ?

Thanks.

  • 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-12T20:53:51+00:00Added an answer on June 12, 2026 at 8:53 pm

    Found solution myself! 🙂

    a) add id column to “test” table
    b) sql query:

     WITH 
        t1 AS ( SELECT a, MIN(id) as id FROM test GROUP BY a ), 
        t2 AS ( SELECT b, MIN(id) as id FROM test GROUP BY b ) 
        SELECT * FROM test 
        WHERE id IN ( SELECT id FROM t1 ) AND id IN ( SELECT id FROM t2 );
    

    Result:

     id | a | b 
    ----+---+---
      6 | 1 | 5
      7 | 4 | 1
      9 | 3 | 3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to convert sqlite query to Ormlite query. SELECT * FROM Test where
I have this query: SELECT * FROM sample INNER JOIN test ON sample.sample_number =
I have 3 columns(id,parent,value) with some data and this query: SELECT * FROM test
I want to use a query like: select * from test where data in
$query = mysql_query(SELECT * FROM test WHERE SUBSTRING(date,0,4)=1392) //for example 1392 echo query['name']; i
how would you guys transform this query into Linq? SELECT * FROM Test T1
I'd like to select all the rows from a temporary table that have a
I have a query like this SELECT * FROM test JOIN test2 ON test.id=test2.id
I have a query select * from test; I have to add UNION after
I want to execute simple statement: SELECT * FROM OPENROWSET('MICROSOFT.JET.OLEDB.4.0','Text;Database=C:\Temp\;','SELECT * FROM [test.csv]') And

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.