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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:03:24+00:00 2026-06-17T19:03:24+00:00

I am trying to create a query which returns from my database the available

  • 0

I am trying to create a query which returns from my database the available vehicles based on the from and to dates a user inputs.

This is currently the date within my booking table.

Booking Table
booking_id     customer_id    reg_number    date_from    date_to    status
1              2              RH34 TJT      23-JAN-13    24-JAN-13  1
2              3              RJ54 FKF      26-JAN-13    26-JAN-13  1     

Below is my query, it works if i put a date that is not equal to a date which is already in the booking table. For example if i put the 22-JAN-13 to 27-JAN-13 those two cars in the above table will be omitted from the results cause they are booked. However if I put in 23-JAN-13 to 24-JAN-13, the car booked on this day will also be returned when it shouldn’t be because its booked.

SELECT   *
FROM vehicles
INNER JOIN car_model ON vehicles.model_code = car_model.model_code
INNER JOIN manufacture ON car_model.manufacture_code = manufacture.manufacture_code
LEFT OUTER JOIN booking ON vehicles.reg_number = booking.reg_number
WHERE ((booking.date_from <= '23-JAN-13' OR booking.date_from >= '24-JAN-13')
        AND (booking.date_to <= '23-JAN-13' OR booking.date_to >= '24-JAN-13')
        AND booking.booking_status = 1);

Because i am using <= and >= the equals part will cause it to omit them as they are equal, or am i wrong?

  • 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-17T19:03:25+00:00Added an answer on June 17, 2026 at 7:03 pm

    try this

    SELECT   *
    FROM vehicles
    INNER JOIN car_model ON vehicles.model_code = car_model.model_code
    INNER JOIN manufacture ON car_model.manufacture_code = manufacture.manufacture_code
    LEFT OUTER JOIN booking ON vehicles.reg_number = booking.reg_number
    WHERE ((booking.date_from < '23-JAN-13' OR booking.date_from > '24-JAN-13')
            AND (booking.date_to < '23-JAN-13' OR booking.date_to > '24-JAN-13')
            AND booking.booking_status = 1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a efficient query which will retrieve 'projects' from a database
We are trying to create/query information from a CF based on the following structure
I'm trying to query List from database which will be shown in dropdownlistfor in
I am trying to create a query which will return all shows in database
I'm trying to save data from a facebook graph query, which returns location info
I'm trying to create wmi query to sccm to get PC, where was user's
I'm trying to create a query with the Criteria API from JPA 2.0, but
I trying to create a MySql Query from the $_POST values trouble is i
Im trying to create a select command to query the database I have and
I'm basically trying to create a url friendly query string with user input. The

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.