Count the number of foods supplied by each supplier


1. Find the columns that make up the primary key of the l_lunch_items table.Sort the columns by position. (Do this in one statement).

2. List all the lunches that employees have signed up for. Show me first_name, last_name, lunch_date, and product_code of the items they ordered. Do not include employees who don't have a manager. Sort the rows by product_code. 

3. From the employees table, list the employee_id, last_name, and phone_number of every employee, along with the last_name and phone number of his manager. Sort the rows by employee_id. (Hint...tables can be joined to themselves...just give each table a different alias).

4. Similar to 3, but include rows for the people who do not have managers.

5. Count the number of foods supplied by each supplier. List all the suppliers. Show the supplier_id, supplier_name, and number of foods from each supplier. Sort the rows on the supplier_id. 

6. Count the number of employees who work in each department. List all the departments. Show the department code, department name, and the number of employees. Sort on the dept_code.

7. Count the number of servings of each food in all the lunches in the l_lunch_items table. Show all of the foods. Return supplier id, product code, description, and the number of servings in all of the lunches.

8. Show the columns that make up the foreign key of the l_lunch_items table.

9. Find the total amount spent on lunches by each employee. Show first_name,last_name, credit_limit, and total_price_spent in your results. Order your
answer by total_price_spent in descending order.

10. For each lunch date, list the total quantity of each food needed for that lunch. List the columns: lunch_date, food_description, full name of the supplier, total quantity, and total price.

11. Find the total amount spent on lunches by each employee. Only show the employees who spent more than their credit limit. Show first_name,last_name, credit_limit, and total_price_spent in your results. Order your answer by total_price_spent in descending order 

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Count the number of foods supplied by each supplier
Reference No:- TGS0118057

Expected delivery within 24 Hours