SQL Questions
SQL Questions
(iii) Display the FLNO and FARE to be paid for the flights from
“DELHI” to “MUMBAI” using table FLIGHTS and FARES, where the
fare to be paid = FARE + FARE * TAX%/100.
(iv) Display the minimum fare “INDIAN AIR LINES” is offering from
the table FARES.
SELECT MIN(FARE) FROM FARES WHERE AIRLINES=”INDIAN
AIRLINES”