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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:41:10+00:00 2026-05-31T10:41:10+00:00

I am trying to write a query for my database. Basically, I have an

  • 0

I am trying to write a query for my database.

Basically, I have an array of strings containing room numbers that I need to match up with another database containing events in the rooms. I want to find the next event happening in that room.
Ex:
I have an array room containing [ZACH102, ZACH103]. I want to find the database to return the next event happening in ZACH102 and ZACH103. I know how to find events for 1 room using the query below. But how do I do this using an array?

select   name,
         eventtime,
         (eventtime - currenttime) > 0 as time_from_test
from     the_table
where    the_table.room = ZACH102
order by time_from_test
limit 1

Thanks in advance!

EDIT: Sorry if my explanation wasnt clear enough, but I only want the earliest event in each room in the array. Note the limit 1 at the end.

EDIT: Yes, I put the limit 1 there to mean that I only want 1 event from ZACH 102 and then i want 1 event from ZACH 103. I explained that the code above only finds events for 1 room.

  • 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-31T10:41:12+00:00Added an answer on May 31, 2026 at 10:41 am

    In Sql Server I’d use a common table expression. But since it looks like you’re using mysql, I’d do something like this:

    select t2.name, t2.room, t2.eventtime, t2.time_from_test
    from the_table t1
    inner join
    (
        select   name, room,
             min(eventtime) as eventtime,
             (eventtime - currenttime) > 0 as time_from_test
        from     the_table
        where    the_table.room in ('ZACH102', 'ZACH103')
        group by name, room
        order by time_from_test
    ) t2 on t2.room = t1.room and t2.name = t1.name
    

    Eventually you’re gonna need to set this up dynamically, where you don’t know the contents of your IN (...) clause in advance. When that time comes, the best thing to do is plan ahead so that your array is already stored in a table somewhere. That will give you two options. The first is to nest a sub query in your IN (...) condition:

    select t2.name, t2.room, t2.eventtime, t2.time_from_test
    from the_table t1
    inner join
    (
        select   name, room,
             min(eventtime) as eventtime,
             (eventtime - currenttime) > 0 as time_from_test
        from     the_table
        where    the_table.room in (select room from shopping_cart where session_key='MySessionKey')
        group by name, room
        order by time_from_test
    ) t2 on t2.room = t1.room and t2.name = t1.name
    

    The other is to use a join:

    select t2.name, t2.room, t2.eventtime, t2.time_from_test
    from the_table t1
    inner join
    (
        select   name, room,
             min(eventtime) as eventtime,
             (eventtime - currenttime) > 0 as time_from_test
        from     the_table
        inner join shopping_cart on shopping_cart.room = the_table.room
        where shopping_cart.session_key = 'MySessionKey'
        group by name, room
        order by time_from_test
    ) t2 on t2.room = t1.room and t2.name = t1.name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a query for a database that will left join a
I am trying to write a query that grabs information from one database and
I'm having trouble with my sqlite database. I'm trying to write an query that
I'm trying to write query to a MYSQL database that queries for products that
I'm trying to write a query that reports the current database activity. The query
I am trying to query a database. I already have a file that includes
I am trying to write a query that will search a list of strings
I'm trying write a query to find records which don't have a matching record
I'm trying to write a query that will pull back the two most recent
I'm trying to write a query that extracts and transforms data from a table

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.