PostgreSQL - Advanced Features
You wrote this query to find bookings fully inside June 2024:
But it returns no rows even though some bookings are inside June. What is the likely problem?
SELECT * FROM bookings WHERE stay <@ daterange('2024-06-01', '2024-06-30');But it returns no rows even though some bookings are inside June. What is the likely problem?
