I want to join to two table but I got a problem
Here is my SQL syntax
select * from booking as b,
booking_detail as bd
WHERE bookingId = 9 AND b.bookingId = bd.bookingId
Here is I got error:
# 1052 - Column 'bookingId' in where clause is ambiguous
use alias for
b.bookingId = 9