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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:41:36+00:00 2026-05-15T01:41:36+00:00

Table1 has u_name, Table2 has u_name, u_type and u_admin Table1.u_name is unique. But neither

  • 0

Table1 has u_name, Table2 has u_name, u_type and u_admin

  1. Table1.u_name is unique. But neither of the 3 fields in Table2 is unique.

  2. For any value of Table1.u_name, there are 0 to many entries in Table2 that Table2.u_name equals to that value.

  3. For any value of Table1.u_name, there are 0 to 1 entries in Table2 that Table2.u_name equals to that value AND Table2.u_type=’S’

What I want: Use Table1.u_name to get Table1., Table2.u_admin where Table1.u_name=Tabl2.u_name and Table2.u_type=’S’. If there is no such entry in Table2 we still need to get Table1.

Please help give me some hints. Thank you so much!

  • 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-15T01:41:37+00:00Added an answer on May 15, 2026 at 1:41 am

    I suggest you read about “outer join”, specifically “left outer join”, which is what you want. An outer join returns all rows from one table, returning nulls for values from the joined table where there is no row matching the key.

    Either of these should work

    select table1.*, table2.u_admin from table1 left join table2
    on table1.u_name=table2.u_name and table2.type='S'
    

    Or

    with a as (select u_name,u_admin from table2 where type='S')
    select table1.*,a.u_admin from table1 left join a on table1.u_name=a.u_name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.