Write the following questions as queries in
SQL. Use only the operators discussed in class (no
outer joins)
Consider the following database schema:
INGREDIENT(ingredient-id,name,price-ounce)
RECIPE(recipe-id,name,country,time)
USES(rid,iid,quantity)
where INGREDIENT lists ingredient information (id, name, and the
price per ounce); RECIPE lists recipe information (id, name,
country of origin, and time it takes to cook it); and USES tells us
which ingredients (and how much of each) a recipe uses. The primary
key of each table is underlined; rid is a foreign...