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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:58:24+00:00 2026-06-14T15:58:24+00:00

For Example if I am given the following table Id Key Value 1 A

  • 0

For Example if I am given the following table

Id        Key             Value

 1          A             Alpha
 2          B             Alpha
 3          A             Charlie

And I took the input {(A, Charlie) and (B, Alpha)} and I asked to return all the IDs I would want it to return 2 and 3 but NOT 1.

What is the best way to do this? Can I combine it all into one query, (for speed) or would I have to run a repeat query for each value pair I received.

  • 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-14T15:58:25+00:00Added an answer on June 14, 2026 at 3:58 pm

    I think Postgresql has the most elegant solution:

    SELECT  *
    FROM    T
    WHERE   ("Key", "Value") IN (('B', 'Alpha'), ('A', 'Charlie'));
    

    SQL Fiddle Example

    In SQL-SERVER 2008 and onward you can use VALUES to build your tuples:

    SELECT  T.*
    FROM    T
            INNER JOIN
            (   VALUES
                    ('B', 'Alpha'),
                    ('A', 'Charlie')
            ) v (Key, Value)
                ON v.Key = T.Key
                AND v.Value = T.Value
    

    SQL Fiddle Example

    Or for a procedure you could create a key-value pair type and pass this as a parameter:

    CREATE TYPE KeyValuePair AS TABLE ([Key] VARCHAR(1), [Value] VARCHAR(7));
    
    DECLARE @T AS KeyValuePair
    INSERT @T 
    VALUES
        ('B', 'Alpha'),
        ('A', 'Charlie')
    
    
    SELECT  T.*
    FROM    T
            INNER JOIN @T v
                ON v.[Key] = T.[Key]
                AND v.Value = T.Value;
    

    SQL Fiddle Example

    For MySQL I think you may have to just build this using AND/OR

    SELECT  *
    FROM    T
    WHERE   (`Key` = 'A' AND `Value` = 'Charlie')
    OR      (`Key` = 'B' AND `Value` = 'Alpha')
    

    Example on SQL Fiddle

    My Knowledge of other DBMS is limited, so if it is not one of the above sorry I can’t be of more help.

    EDIT (With the help of a_horse_with_no_name)

    The PostgreSQL syntax also works for Oracle (and I think DB2)

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

Sidebar

Related Questions

I was following the example given in the OpenCV for video displaying, just took
Given the following example (using JUnit with Hamcrest matchers): Map<String, Class<? extends Serializable>> expected
Given the following example data: Users +--------------------------------------------------+ | ID | First Name | Last
Given the following HTML example... <div id='div1'>div one</div> <div id='div2'>div two</div> ...I found that
This is just an example, but given the following model: class Foo(models.model): bar =
I want to Make selenium script which move slider given on following site Example
In the following contrived example, data is given a warning due to it being
Given a group of files with the following naming convention: datetime_restofname.txt an example of
How can you sort the following word by the given rule? Example data is
Given the following table structure: id iata icao name 1 ANC PANC Anchorage -

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.