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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:45:09+00:00 2026-05-14T04:45:09+00:00

With regards to the following statement: SELECT * FROM explorer.booking_record booking_record_ INNER JOIN explorer.client

  • 0

With regards to the following statement:

SELECT *
  FROM explorer.booking_record booking_record_
 INNER JOIN explorer.client client_ 
    ON booking_record_.labelno = client_.labelno
 INNER JOIN explorer.tour_hotel tour_hotel_ 
    ON tour_hotel_.tourcode = booking_record_.tourrefcode
 INNER JOIN explorer.hotelrecord hotelrecord_ 
    ON tour_hotel_.hotelcode = hotelrecord_.hotelref
 WHERE booking_record_.bookingdate NOT LIKE '0000-00-00' 
   AND booking_record_.tourdeparturedate NOT LIKE '0000-00-00' 
   AND (hotelrecord_.hotelgroup = "LPL" 
   AND YEAR(booking_record_.tourdeparturedate) 
       BETWEEN YEAR(AddDate(Now(), Interval -5 Year)) 
           AND YEAR(Now())

My MySQL skills are certainly not up to scratch, the actual result set I wish to find is “a customer who has been to 5 or more LPL hotels in the past 5 years“. So far I haven’t got as far as dealing with the count as I’m getting a huge number of results with some 250+ per customer.

I assume this is to do with the way I’m joining tables. Schema wise the booking_record table contains a tour reference code, which links to tour_hotel which then contains a hotelcode which links to hotelrecord. This hotelrecord table contains the hotelgroup.

The client table is joined to the booking_record via a booking reference and a client may have many bookings.

If anyone could suggest a way for me to do this I’d be very grateful and hopefully learn enough to do it myself next time! I’ve been scratching my head over this one for a few hours now!

Customers may have many bookings within booking_record

Daniel.

  • 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-14T04:45:09+00:00Added an answer on May 14, 2026 at 4:45 am

    Every tour_hotel probably has more than one hotelrecord related to it. Thats why you get so many records. If you don’t need any information about the hotel you can just select what you need from client and use distinct.

    select distinct c.clientid, c.name
    from explorer.booking_record b
    inner join explorer.client c on b.labelno = c.labelno
    inner join explorer.tour_hotel t on b.tourrefcode = t.tourcode
    inner join explorer.hotelrecord h on t.hotelcode = h.hotelref
    where
     b.bookingdate != '0000-00-00' and
     b.tourdeparturedate != '0000-00-00' and
     h.hotelgroup = "LPL" and 
     year(b.tourdeparturedate) >= (year(now()) - 5)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.