
Explanation of Solution
a.
Results for the above query:
1) List the names, department and salary of all employees earning more than 100000:
Open the given an Access
Screenshot of MS Access
- Select “CREATE” option from the menu bar and then choose “Query Design” from it.
- Close the “Show Table” dialog box and click “SQL View” from the top left corner.
- A query form gets displayed as shown below:
SELECT Name, Department, Salary
FROM EMPLOYEE
WHERE Salary > 100000;
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 1”.
- Right click “Query 1” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
2)
List the name and specialty of all employees in the Marketing department:
- Create another “Query design” and write the below “Query 2” query.
SELECT Name, Specialty
FROM Employee
WHERE Department = "Marketing";
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 2”.
- Right click “Query 2” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
3)
Computation of average, maximum, minimum salary of employees in the company:
- Create another “Query design” and write the below “Query 3” query.
SELECT AVG(Salary) AS Average, MAX(Salary) AS Maximum, MIN(Salary) AS Minimum
FROM Employee;
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 3”.
- Right click “Query 3” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
Explanation of Solution
b. Use of data for salary increase decision:
Manager will coming to know the average salary for employees in every d...
Explanation of Solution
c. Three ways the user can share the Access application with another:
- Share data by using network folders:
This is the simplest option and has the least requirement. In this method, the database file is stored on a shared network drive and all the user can use that file at a time.
Advantage – all the users can use that file simultaneously.
Disadvantage – the original data can be modified because of multiple users use that file simultaneously.
- Share a database by using a server:
This method is store the tables on the network and each user has local copy of a database file which contains links to the tables, along with forms, quires, objects and reports...

Trending nowThis is a popular solution!

Chapter AE Solutions
Using MIS (10th Edition)
- Information Security Risk and Vulnerability Assessment 1- Which TCP/IP protocol is used to convert the IP address to the Mac address? Explain 2-What popular switch feature allows you to create communication boundaries between systems connected to the switch3- what types of vulnerability directly related to the programmer of the software?4- Who ensures the entity implements appropriate security controls to protect an asset? Please do not use AI and add refrencearrow_forwardFind the voltage V0 across the 4K resistor using the mesh method or nodal analysis. Note: I have already simulated it and the value it should give is -1.714Varrow_forwardResolver por superposicionarrow_forward
- Describe three (3) Multiplexing techniques common for fiber optic linksarrow_forwardCould you help me to know features of the following concepts: - commercial CA - memory integrity - WMI filterarrow_forwardBriefly describe the issues involved in using ATM technology in Local Area Networksarrow_forward
- For this question you will perform two levels of quicksort on an array containing these numbers: 59 41 61 73 43 57 50 13 96 88 42 77 27 95 32 89 In the first blank, enter the array contents after the top level partition. In the second blank, enter the array contents after one more partition of the left-hand subarray resulting from the first partition. In the third blank, enter the array contents after one more partition of the right-hand subarray resulting from the first partition. Print the numbers with a single space between them. Use the algorithm we covered in class, in which the first element of the subarray is the partition value. Question 1 options: Blank # 1 Blank # 2 Blank # 3arrow_forward1. Transform the E-R diagram into a set of relations. Country_of Agent ID Agent H Holds Is_Reponsible_for Consignment Number $ Value May Contain Consignment Transports Container Destination Ф R Goes Off Container Number Size Vessel Voyage Registry Vessel ID Voyage_ID Tonnagearrow_forwardI want to solve 13.2 using matlab please helparrow_forward
- a) Show a possible trace of the OSPF algorithm for computing the routing table in Router 2 forthis network.b) Show the messages used by RIP to compute routing tables.arrow_forwardusing r language to answer question 4 Question 4: Obtain a 95% standard normal bootstrap confidence interval, a 95% basic bootstrap confidence interval, and a percentile confidence interval for the ρb12 in Question 3.arrow_forwardusing r language to answer question 4. Question 4: Obtain a 95% standard normal bootstrap confidence interval, a 95% basic bootstrap confidence interval, and a percentile confidence interval for the ρb12 in Question 3.arrow_forward
- A Guide to SQLComputer ScienceISBN:9781111527273Author:Philip J. PrattPublisher:Course Technology PtrPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781285867168Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781305627482Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781285196145Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos CoronelPublisher:Cengage Learning




