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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:46:00+00:00 2026-05-23T07:46:00+00:00

I want to know is it possible to do if I have 4 number

  • 0

I want to know is it possible to do if I have 4 number as below

1,2,3,4

In my data base have data exists as below

1,2,3,5,6,7

How can I query database and return 4 in 1 query

Please advise

  • 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-23T07:46:01+00:00Added an answer on May 23, 2026 at 7:46 am
    CREATE TABLE `example` (
      `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    
    INSERT INTO example VALUES (1),(2),(3),(5),(6),(7);
    
    SELECT t2.id FROM example AS t1
    RIGHT JOIN (
      SELECT 1 AS id UNION
      SELECT 2 AS id UNION
      SELECT 3 AS id UNION
      SELECT 4 AS id
    ) AS t2
    ON t1.id = t2.id
    WHERE t1.id IS NULL;
    
    +----+
    | id |
    +----+
    |  4 |
    +----+
    

    Or use a temporary table:

    CREATE TEMPORARY TABLE `tmp` (
      `id` int(11) DEFAULT NULL
    ) ENGINE=InnoDB;
    
    INSERT INTO tmp VALUES (4);
    
    SELECT t2.id FROM example AS t1
    RIGHT JOIN tmp AS t2
    ON t1.id = t2.id
    WHERE t1.id IS NULL;
    

    To see what’s happening, switch things around a bit:

    SELECT t1.id, t2.id FROM example AS t1
    RIGHT JOIN (
      SELECT 1 AS id UNION
      SELECT 2 AS id UNION
      SELECT 3 AS id UNION
      SELECT 4 AS id
    ) AS t2
    ON t1.id = t2.id;
    
    +------+----+
    | id   | id |
    +------+----+
    |    1 |  1 |
    |    2 |  2 |
    |    3 |  3 |
    | NULL |  4 |
    +------+----+
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know whether it is possible to have multiple stores under 1
So what I want to know is whether the following is possible. I have
We want to know if it is possible to have a function using jQuery
Possible Duplicate: Format numbers in javascript I have number 2.3455555555555555 I want to get
I have the query below that is selected data in a 'framed' manner. There
I have a number of rows from a database which I want to insert
i want know if is possible, to get a specific element value of a
I want to know is it possible to generate .raw file format using C++.
I want to know if its possible to choose a GC algorithm via code
i want to know if its possible to use a function like .delegate() ,

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.