can i ask you something more??
------------------------------ Commands Entered ------------------------------
SELECT DISTINCT
flightBooking.FlightID,
Customer.CustomerID,
Customer.NAME
FROM
Customer
LEFT OUTER JOIN
flightbooking
ON flightbooking.flightid = 100;
------------------------------------------------------------------------------
SELECT DISTINCT flightBooking.FlightID, Customer.CustomerID, Customer.NAME FROM Customer LEFT OUTER JOIN flightbooking ON flightbooking.flightid = 100
FLIGHTID CUSTOMERID NAME
----------- ----------- --------------------
100 1 Andrew Brown
100 2 Andriani Papakwsta
100 3 Pra3ulla Theodoulou
3 record(s) selected.
here i'm trying to generate a list with the customer who are going to travel in a specific flight (100) but the result is a list with all the customers
i tried and..... ON flightbooking.status = 'r';
which mean that they are Reserved but i have the same problem
can you help me?