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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:19:17+00:00 2026-06-10T16:19:17+00:00

Is this possible in MySQL? Let’s say i have a table: ID, Name Now,

  • 0

Is this possible in MySQL?

Let’s say i have a table:
ID, Name

Now, i want to run a query to see if these names exists “John,James,Bill”. Assuming only the name James exists in database (ID:23, Name:James) i wish to see this result:

ID    | Name
------------
null  | John
  23  | James
null  | Bill

Any ideas?

  • 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-10T16:19:18+00:00Added an answer on June 10, 2026 at 4:19 pm

    You need an outer join between your table and some table that contains the list of names for which you wish to search (you can either create such a table before running your query, or materialise such a table within the query using UNION as shown below). Learn about SQL joins.

    SELECT * FROM my_table NATURAL RIGHT JOIN (
      SELECT 'John' AS Name UNION ALL SELECT 'James' UNION ALL SELECT 'Bill'
    ) t
    

    See it on sqlfiddle.

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

Sidebar

Related Questions

Is it possible to achieve this task with a single MySQL query? Table urls
Let's say I have the following simple query SELECT TOP 1 name FROM months
Let's suppose I have this MySQL table: id place_id area_mq n -- -------- -------
So let's say I have an int column in MySQL. I want to update
In MySql, Let's say I have a table myTable ID word I would like
Let's say that I want to have a table that logs the date and
I'm not sure if this is possible in one mysql query so I might
Is it possible use a MySQL query to perform this kind of check? If
I'm not sure if this possible. If not, let me know. I have a
Let's say that we have one table with a field called sales_total and another

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.