Part 1 - Microsoft Access View Glossary Use Access to create a database in which you can store and retrieve information about the Rio Salado Theme Park operating departments, their managers, and their employees. Create a new blank database . Save the database with the filename RSC_Theme_Park_Database_MEID.accdb . Replace “MEID” with your actual MEID. Structure of the Database NOTE: Read the requirements for the database and be sure you understand how it should work before creating your design. You will need to complete the following: Create two tables. Establish table relationships. Create one form. Create two queries. Create one report. As you work on the project, remember to follow best practices for creating databases as described in your TestOut materials and the online lesson content. Create the Tables Tables and their relationships form the backbone of a relational database. In this database, you will create a table for the Rio Salado Theme Park operating departments and their managers, and a table for employees in each department. When creating fields for your tables, it is important to break down your data into the smallest chunks you can (fine granularity) to make it easier to extract data from the database later. Remember to assign the most appropriate data type to each of the fields and that one of the fields in each of your tables must be set as the Primary Key using the AutoNumber data type. You do not need to enter data records into your tables at this time; you will create a form later in this project for data entry. Department Table Create a table named Department Table . At a minimum, your table should include the following fields: Department ID Department Name Manager First Name Manager Last Name Manager Email Address Manager Phone Number Employee Table Create a table named Employee Table . At a minimum, your table should include the following fields: Employee ID Department ID Employee First Name Employee Last Name Employee Date of Hire Employee Rate of Pay Establish Table Relationships Once the design of the tables has been completed, the next step is to establish relationships between the tables. You will join the Department Table with the Employee Table on common fields through the following tasks: Join the primary key of the Department Table with the foreign key of the Employee Table in a One-To-Many relationship. Enforce referential integrity. Cascade update related fields. Cascade delete related records. Create a Form Once the tables have been designed and the relationships have been established, it is time to enter data. You will use one form to enter and edit data in the two tables: Create one form named Department Form that can be used to enter data into both tables. Insert a row below the Employee Table subform. Add a button in the new row to perform the Add New Record action with the text: Add Record . Use the form to enter a m.