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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:42:24+00:00 2026-05-30T16:42:24+00:00

I have had mysql query to check any particular reservations existing in database .

  • 0

I have had mysql query to check any particular reservations existing in database . These conditions are working in patient doctor reservation system

Background :
I have system which checks available time slots .And displays next available time . As per system my next available time is 9:15 AM to 10:45 AM . But there in admin side I’ve set a reservation 10:00AM to 10:30,this is set by admin . So I need to show users a message “There is a booking between the requested time 9:15 to 10:45 .You can’t use the entire time” .

I wrote a query but its not working ,its not giving any results

SELECT * 
FROM reservation
WHERE facility_id =  '24'
AND (
'2012-03-02 09:15:00' >= CONCAT( reservation_date,  ' ', reservation_time,  ':00' ) 
AND  '2012-03-02 09:15:00' <= CONCAT( reservation_date,  ' ', reservation_end_time,  ':00' )
)
AND  '2012-03-02 10:45:00' >= ( CONCAT( reservation_date,  ' ', reservation_time,  ':00' ) 
AND  '2012-03-02 10:45:00' <= CONCAT( reservation_date,  ' ', reservation_end_time,  ':00' ) ) 

Anyone can tell me any problem with my query .

  • 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-30T16:42:25+00:00Added an answer on May 30, 2026 at 4:42 pm

    It shouldn’t work becouse you are comparing strings not datetime values. use for example Date_FORMAT() like this:

    SELECT * 
    FROM reservation
    WHERE facility_id =  '24'
    AND (
     DATE_FORMAT('2012-03-02 09:15:00' , "%Y-%m-%d %H:%i:%s") 
     >= 
     DATE_FORMAT(CONCAT( reservation_date,  ' ', reservation_time,  ':00' ), "%Y-%m-%d %H:%i:%s") 
    AND  
    ...
    

    BTW: This is a bad design, it would be be easier if reservation_date is a datetime, then you can directly compare the two values using BETWEEN or without all these casting.

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

Sidebar

Related Questions

I have a MySQL database with a column of numeric value. When I query
Using PHP / MySQL all encoded up as UTF, we have recently had to
I have just migrated to mysql 5.5.20 and I had a performance issue with
I have had a working asp.net 4 membership wesite for about 5 months and
My MYSQL query isn't inserting properly via a form I had made. The query:
I have never had a need to do a random SELECT on a MySQL
I have no idea how to query mysql to display the pattern I want.
I have a table in a mySQL database we'll call 'tbl' where the fields
I have a very simple query (three where conditions; two equals, one between) from
I have a site that displays data on travel products from a MySQL database.

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.