Tough Sql practise questions for interviews involving SELECT queries - Part 1



The following relations keep track of airline flight information:
Flights(flno: integer, from: string, to: string, distance: integer, departs: time,
arrives: time, price: integer)
Aircraft(
aid: integer, aname: string, cruisingrange: integer) Certified(eid: integer, aid: integer)
Employees(eid: integer, ename: string, salary: integer)
Note that the Employees relation describes pilots and other kinds of employees aswell; every pilot is certified for some aircraft, and only pilots are certified to fly.Write each of the following queries in SQL.
  1. Find the names of aircraft such that all pilots certified to operate them earn more than $80,000.
  2. For each pilot who is certified for more than three aircraft, find the eid and the maximum cruisingrange of the aircraft for which she or he is certified.
  3. Find the names of pilots whose salary is less than the price of the cheapest route from Los Angeles to Honolulu.
  4. For all aircraft with cruisingrange over 1000 miles, find the name of the aircraft and the average salary of all pilots certified for this aircraft.
  5. Find the names of pilots certified for some Boeing aircraft.
  6. Find the aids of all aircraft that can be used on routes from Los Angeles to
    Chicago.
  7. Identify the routes that can be piloted by every pilot who makes more than
    $100,000.
  8. Print the enames of pilots who can operate planes with cruisingrange greater
    than 3000 miles but are not certified on any Boeing aircraft.
  9. A customer wants to travel from Madison to New York with no more than two
    changes of flight. List the choice of departure times from Madison if the
    customer wants to arrive in New York by 6 p.m.
  10. Compute the difference between the average salary of a pilot and the average
    salary of all employees (including pilots).
  11. Print the name and salary of every nonpilot whose salary is more than the
    average salary for pilots. 

            For Solutions, Drop your email in the top right corner (Subscription box) . 

Comments

Popular posts from this blog

Java important topics list for interviews

Tough Sql practise questions for interviews involving SELECT queries - Part 2

DBMS important topics list for interviews

Program to find number lines and words in a given file

Producer Consumer Problem with Blocking Queue in Java.

Animation for String search - KMP Algorithm

Interactive Data Structure visualizations/animations for algorithms

Replace Occurances of the given string