Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Open the School database located in the Access2 > Case1 folder provided with your Data Files. 2. Modify the first record in the tbIStudent
1. Open the School database located in the Access2 > Case1 folder provided with your Data Files. 2. Modify the first record in the tbIStudent table datasheet by changing the First Name and Last Name column values to your first and last names, if necessary. Close the table. 3. Create a query to find all records in the tblStudent table in which the LastName field begins with H. Display the FirstName, LastName, City, and Phone fields in the query recordset, and sort in ascending order by LastName. Save the query as qryLastNameH, run the query, and then close it. 4. Create a query that finds all records in the tblCourse table with a Title value of Computer Science or Data Science. Use a list-of-values criterion and include the fields Title, StartDate, and HoursPerWeek in the query recordset, sorted in ascending order by StartDate. Save the query as qryCompOrDataSci, run the query, and then close it. 5. Create a query that finds all records in the tblStudent table in which the City field value is not equal to Denver. Display the FirstName, LastName, City, and Email fields in the query recordset, and sort in ascending order by City. Save the query as qryNonDenver, run the query, and then close it. 6. Create a query to display the InstancelD, TotalCost, and BalanceDue fields from the tbIRegistration table and the Phone and Email fields from the tblStudent table. Find all records for which the BalanceDue value is greater than 0. Add a calculated field named Payer as the first column that concatenates FirstName, a space, LastName, and (student) if the BillingLastName field is null. Otherwise, the calculated field should concatenate BillingFirstName, a space, BillingLastName, and (billing). Sort the results on the calculated field in ascending order. Save the query as qryBalanceContacts, run the query, resize all columns to their best fit, and then save and close the query. 7. Create a parameter query to select the tbIStudent table records for a City field value that the user specifies, using Enter the city: as the prompt text. If the user doesn't enter a City field value, select all records from the table. Display all fields from the tbIStudent table in the query recordset. Save the query as qryStudentCityParameter. Run the query and enter no value as the City field value, and then run the query again and enter Littleton as the City field value. Close the query. 8. Create a find duplicates query based on the tbIRegistration table. Select StudentID as the field that might contain duplicates, and select all other fields in the table as additional fields in the query recordset. Save the query as qryDuplicateStudentRegistrations, run the query, and then close it. Because the tbIRegistration contains one student registered for two different courses, running this query should show that two records are found containing a duplicate StudentID. 9. Create a find unmatched query that finds all records in the tblStudent table for which there is no matching record in the tbIRegistration table. Select the FirstName, LastName, Phone, and Email fields from the tbIStudents table. Save the query as qryUnregisteredStudents, run the query, and then close it. Running this query should find five unmatched records. 10. Create a new query based on the tblStudent and tbIRegistration tables. In the query recordset, display the FirstName, LastName, BillingFirstName, BillingLastName, Phone, and Email fields from the tblStudent table and the TotalCost and BalanceDue fields from the tblRegistration table. Sort in descending order by the BalanceDue field, and then use the Top Values property to select the top 5% of records. Save the query as qryTopOutstandingBalances, run the query, and then close it. 11. Use the Input Mask Wizard to add an input mask to the Phone field in the tblStudent table. The input mask should use periods as separators, as in 987.654.3210, with only the last seven digits required. Do not store the literal display characters if you are asked to do so, and apply the updated image mask everywhere it is used within the database. Resize the Phone column to its best fit, and then test the input mask by typing over an existing Phone column value, being certain not to change the value by pressing ESC after you type the last digit in the Phone column. Save and close the table
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started