select guest.guestid, guest.firstname,guesttype,reservation.reservationid, rental.checkindate, rental.checkoutdate, reservation.numberofnights
from guest
inner JOIN rental ON rental.guestid = guest.guestid
inner JOIN reservation ON rental.reservationid = reservation.reservationid
where guest.guestid = 1111;