Here's a possibility
"..WHERE Booking_ID = " & bookingID & " AND Type LIKE 'Price' "
This assumes that bookingID is numeric. If it is TEXT type:
"..WHERE Booking_ID = '" & bookingID & "' AND Type LIKE 'Price' "
"..WHERE Booking_ID = " & bookingID & " AND Type LIKE 'Price' "
This assumes that bookingID is numeric. If it is TEXT type:
"..WHERE Booking_ID = '" & bookingID & "' AND Type LIKE 'Price' "