you will need to use mysql workbench to write and runthese sql statements write and 4946511
You will need to use MySQL Workbench to write and runthese SQL statements. Write and execute a SELECT statement that counts how manycompanies in the
Companies table that are inFL. Write and execute a SELECT statement that returns the loweststarting salary and the highest starting salary from the
Jobs table. Write and execute a SELECT statement that returns the averagestarting salary of the jobs listed in the
Jobstable. Write and execute a SELECT statement that returns the name ofthe company from the Companies table that has the most number ofemployees. Write and execute a SELECT statement that returns the name ofthe company from the Companies table that has the least number ofemployees. Write and execute a SELECT statement that returns the averagestarting salary for each job title. Here is a hint on how to writethis query: Select JobTitle, AVG(StartingSalary)FROM Jobs GROUP BY JobTitle
Companies tabledata: Please use this data for company id, name, city,state, recruiter id, and number of employees. The CompanyID will bethe primary key.
Jobs table data:Please use this data for
JobID, JobTitle, StartingSalary,Filled, and DateOpen. The JobID will be the primary key.CompanyID will be the foreign key. Submit a Word document with your SQL commands and screenshotsthat show the results of executing your queries. . . .