Access is a database management system that is a part of the Microsoft 365 suite and a database in Access is comprised of four objects: table, query, form, and report. In this article, we will discuss all these objects in brief and will understand what is the contribution of each object type in a relational database.
Tables:
In Access databases, data are stored in the form of tables. A table is a combination of rows and columns but in Access the terms used for rows and columns are records and fields respectively.
For example: Consider a table STUDENT(Roll no, S-name, Subject, Marks)

In the STUDENT table Rollno, S-name, Subject, and Marks are fields. A field organizes data as per it's data-type i.e. a particular field would contain a similar type of data for every record. In order to add another column Grade to the Student table click on Click to Add and select data-type from the dropdown list and lastly change the field name to Grade. Add values for Grades to the records and now the new table would look like this:

Queries:
Considering the scenario where the user needs to retrieve only a few records from a table, then viewing the entire table would not be a better option. Thus queries are used in such cases. Queries return a small percentage of records from a table. While building a query in Access we define specific conditions for search in order to find the desired data.
For example: In the above Student table in order to select records of students who scored marks greater than 70 a query design will look like:

The output of the above query is:

In this way the Access object query helps in viewing, analyzing, and modifying the data stored in tables.
Forms:
Basically, forms are objects through which a user can modify, add or display the data stored in the Access database. Since multiple users are going to use the forms, therefore, it becomes necessary to pay efficient attention to the design of the form, to maintain the accuracy of the data entered by the users.
For example: For the Student table the form can be designed as follows:

Reports:
Reports provide formatted summaries of data that is appropriate for printing. In Access, we can create a report from any table or query. The components of a database can be presented in an easy-to-read format using reports.
For Example- A report representing student table data grouped as per subjects will be as shown below:
Similar Reads
MS Access â A GUI Database MS Access (also known as Microsoft Access) is a useful tool for organizing and managing data. It's been around since 1992 and is popular with businesses, schools, and even hobbyists. Access combines a powerful database with an easy-to-use interface, so you don't need to be a tech expert to use it. Y
9 min read
Codd's Rules in DBMS Codd's rules are proposed by a computer scientist named Dr. Edgar F. Codd and he also invent the relational model for database management. These rules are made to ensure data integrity, consistency, and usability. This set of rules basically signifies the characteristics and requirements of a relati
3 min read
Database Languages in DBMS Databases are essential for efficiently storing, managing, and retrieving large volumes of data. They utilize both software and hardware components. Where the software acts as an interface to interact with the database and hardware provide servers for physical storage and organizing data.What is a D
9 min read
Categories of End Users in DBMS Pre-Requisite: Different Types of End Users End users are basically those people whose jobs require access to the database for querying, updating, and generating reports. The database primarily exists for their use. There are several categories of end-users these are as follows. Casual End usersNaiv
3 min read
Types of Databases Databases are essential for storing and managing data in todayâs digital world. They serve as the backbone of various applications, from simple personal projects to complex enterprise systems. Understanding the different types of databases is crucial for choosing the right one based on specific requ
11 min read