It should show me the two columns in the table 'booking', guestNo & hotelNo, when hotelNo = 2. However, when i hover on select It says its invalid and I get a 1064 error (so I know its a syntax error).
select guestNo, hotelNo,
from booking,
WHERE hotelNo = 2;
Can someone tell me where I am going wrong???