Hello,
the query below only returns 1 row - I need 2 rows. How does the query need to look like to display both bookings (b1.key#='030aae6e009a' and b1.key#='030aae6e008c') together with payment data?
SELECT * FROM Booking b1, Payment p1
WHERE (b1.key#='030aae6e009a' OR b1.key#='030aae6e008c')
AND b1.key#=p1.key#
Thank you!