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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T19:08:13+00:00 2026-06-12T19:08:13+00:00

Given 2 tables, TableA and TableB, how can I get the ids of TableA

  • 0

Given 2 tables, TableA and TableB, how can I get the “id”s of TableA when the “value” doesn’t match with any “value” of TableB?

Table A

+----+-------+
| id | value |
+----+-------+
| 1  |   a   |
| 2  |   b   |
| 3  |   c   |
| 4  |   d   |
| 5  |   e   |
+----+-------+

Table B

+----+-------+
| id | value |
+----+-------+
| 1  |   a   |
| 2  |   b   |
| 3  |   c   |
| 4  |   c   |
| 5  |   f   |
+----+-------+

Result Table

+----+
| id |
+----+
| 4  |
| 5  |
+----+

EDITED (SQLFiddle): http://sqlfiddle.com/#!2/4c8c9

  • 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-12T19:08:15+00:00Added an answer on June 12, 2026 at 7:08 pm

    If you want to validate that the id/value are the same in both tables then use:

    select distinct id
    from tablea
    where (id, value) not in (select id, value
                              from tableb)
    

    See SQL Fiddle with Demo

    If you want to compare only the values:

    select distinct id
    from tablea
    where (value) not in (select value
                              from tableb)
    

    See SQL Fiddle with Demo

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

Sidebar

Related Questions

Given a table with employee statuses and effective dates, how can I retrieve just
Given a CGImage or UIImage, how can I apply a custom color look-up table
Given these tables: create table Orders ( Id INT IDENTITY NOT NULL, primary key
I can insert 2 pets into a table, and get their lastInsertId() for further
For example, given this table of sparse ids: |id| | 1| | 2| |
I can't convert ds.Tables[1].Rows[0].ToString() to an int. ds.Tables[1].Rows[0] = 100; Gives an error can't
given the two tables and values: Tables People- Columns: [ID]PK Name Field - Columns:
What is the use of the below given tables in Joomla Database? jos_core_acl_aro jos_core_acl_aro_groups
Given two tables APPLE and ORANGE, NAME APPLES Alice 5 Bob 10 Trudy 1
Given the following tables orders +----+---------+---------+ | id | user_id | details | +----+---------+---------+

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.