Sto cercando di aggiungere una condizione utilizzando una query JOIN con Laravel Query Builder.
<?php
$results = DB::select('
SELECT DISTINCT
*
FROM
rooms
LEFT JOIN bookings
ON rooms.id = bookings.room_type_id
AND ( bookings.arrival between ? and ?
OR bookings.departure between ? and ? )
WHERE
bookings.room_type_id IS NULL
LIMIT 20',
array('2012-05-01', '2012-05-10', '2012-05-01', '2012-05-10')
);
So di poter usare Raw Expressions ma poi ci saranno punti di iniezione SQL. Ho provato quanto segue con Query Builder ma la query generata (e ovviamente i risultati della query) non sono ciò che intendevo:
$results = DB::table('rooms')
->distinct()
->leftJoin('bookings', function ($join) {
$join->on('rooms.id', '=', 'bookings.room_type_id');
})
->whereBetween('arrival', array('2012-05-01', '2012-05-10'))
->whereBetween('departure', array('2012-05-01', '2012-05-10'))
->where('bookings.room_type_id', '=', null)
->get();
Questa è la query generata da Laravel:
select distinct * from `room_type_info`
left join `bookings`
on `room_type_info`.`id` = `bookings`.`room_type_id`
where `arrival` between ? and ?
and `departure` between ? and ?
and `bookings`.`room_type_id` is null
Come puoi vedere, l'output della query non ha la struttura (specialmente nell'ambito di JOIN). È possibile aggiungere ulteriori condizioni sotto il JOIN?
Come posso costruire la stessa query usando il Query Builder di Laravel (se possibile) È meglio usare Eloquent o dovrebbe rimanere con DB :: select?
and arrival >= ? and arrival <= ? and departure >= ? and departure <= ?
inveceAND ( r.arrival between ? and ? OR r.departure between ? and ? )
(si prega di notare laOR
clausola). Ciò aggiunge ulteriori righe al risultato che non dovrebbero essere presenti. Immagino che non sia possibile generare tutti i tipi di condizioni in join utilizzando QB.