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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:21:37+00:00 2026-05-29T07:21:37+00:00

Take these two example tables: Table A Name FirstOrLast Jeremy First Smith Last Mark

  • 0

Take these two example tables:

Table A
Name   FirstOrLast
Jeremy First
Smith  Last
Mark   First
David  First


Table B
Name
Jeremy
Smith
Mark
David
Jones
Jack

I would like the output to be this: Output only first names, but if Table A doesn’t record if it’s a first or last name, output it anyway. The correct output would be:

Jeremy
Mark
David
Jones
Jack

I’ve tried accomplishing this with an outer join, like so:

select
  B.Name
from
  A, B
where
  A.name = B.name(+) and
  A.FirstOrLast = 'First';

but no luck. How can I do this?

  • 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-29T07:21:38+00:00Added an answer on May 29, 2026 at 7:21 am

    When you perform a left outer join and there is no record in A, a.firstOrLast will be null. While you’re at it, you might as well switch to the standard syntax for joins:

    select
        B.Name
    from
        B
    left outer join A on A.name = B.name
    where
    A.firstOrLast is null or A.firstOrLast = 'First';
    

    However, the old syntax should also work:

    select
        B.Name
    from
        A, B
    where
        A.name = B.name(+) and
        (A.firstOrLast is null or A.firstOrLast = 'First');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting a little confused and need some help please. Take these two
I will explain problem with an example: There is two table in my database,
I have two tables. The first one contains all the item informations and the
Are the two events the same or are there differences that we should take
Is there a built in function in .NET 2.0 that will take two arrays
I could do this using loops, but is there a way to take two
I have a class that currently has several methods that take integer parameters. These
This is a follow-up question to this one . Take a look at these
Let me explain the context first. There are two databases sitting on two distinct
I have three tables (these are the relevant columns): Table1 bookingid, person, role Table2

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.