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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:07:54+00:00 2026-06-01T13:07:54+00:00

I am trying to use dynamically created list in WHERE, for example: select *

  • 0

I am trying to use dynamically created list in WHERE, for example:

select * from books where id in (123, 120, 125) and bookCover = 'Hardcover'

I want to use it with rawQuery and I have prepared SQL in “?” form, for example:

select * from books here id in (?) and bookCover = ?

is there any way, how to put a list of “ids” in the IN clause of the select? or do I have to forget about prepared statements with “?” ?

Thanks in advance for any help. Searched

  • 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-01T13:07:55+00:00Added an answer on June 1, 2026 at 1:07 pm

    No – I do NOT know ANY DB (like Oracle, SQL Server, SQLite, Postgres etc.) which provides for what you ask…

    The nearest solution you can get is to insert the IDs into a second table and then use a subquery in the IN part…

    MyIDTable hat 2 fields QNO (is just a key) and ID (contains the IDs you want in your IN… you first insert 3 rows with the same QNO and the respective IDs…

    INSERT INTO MyIDTable (QNO, ID) VALUES (3, 120);
    INSERT INTO MyIDTable (QNO, ID) VALUES (3, 123);
    INSERT INTO MyIDTable (QNO, ID) VALUES (3, 125);
    

    Then you can do a SELECT like this:

    select * from books where id in (SELECT T.ID FROM MyIDTable T WHERE T.QNO = 3) and
    bookCover = 'Hardcover'
    

    Which basically allows for this:

    select * from books where id in (SELECT T.ID FROM MyIDTable T WHERE T.QNO = ?) and
    bookCover = ?
    

    After you are done looking for that specific set of IDs you can clean up by DELETE FROM MyIDTable WHERE QNO = 3.

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

Sidebar

Related Questions

Im trying to create LinqDataSource that will represent data from dynamically created String list
I am trying to use UIMenuCnotroller to show a list of dynamically generated items,
I am trying to use jQuery autocomplete on my dynamically created textboxes. this is
I have a dynamically-created list of strings called 'variables'. I need to use these
I'm trying to use a variable in my selector when applied to dynamically created
I'm trying to use a dynamically generated fully-qualified table name in sql server 2008.
I'm trying use mod_rewrite to rewrite URLs from the following: http://www.site.com/one-two-file.php to http://www.site.com/one/two/file.php The
I'm at a lose with this one. Trying to take edittext from a list
I have a dynamically generated list of students. I want the users to capture
I am trying to send my dynamically created silverlight 2 page/image to a an

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.