Use
select count(*) from flight where date is null;
select flight.*, bank_transaction.* from flight, bank_transaction where flight.date = bank_transaction.date;
The corresponding banking details are filled with null values.
Back to Tutorial