MS Access

MS Access –Create Tables

MS Access –Create Tables

In relational databases like MS Access, you store any information in the form of records (rows) and fields (columns), which constitute a table. A table is created such that we can derive various relationships between the different data sets. Let’s take a real-life example to understand it more clearly. Say suppose you join an organization in the role of an HR manager.

Now, the department of payroll asks you to provide the details of all the employees currently working in a particular department. So, you would most probably try to develop an MS Access database with all the employees’ information like their employee id, DOB, date of joining, number of days present, and also, and number of days taken leave or marked absent. So, whatever fields I just mentioned are all independent entities that are required to be entered and saved into a single place. This place is technically called a  table. Before entering any particular data, you need to enter that field's data type. If you try to enter any data which is not of the mentioned data type, then Access would not take the entry.  

Among other advantages of creating a table in Access, one major advantage is that it prevents data redundancy. That is, it would help you prevent duplicate entries or repeated entries of particular data. Even if redundant data is not reduced to 0 levels, it can significantly lower the redundancies already present in the data. This is of great help because manually reducing or eliminating duplicate information can be a daunting task all by itself. 

So let’s see how a table is opened in a datasheet view and how helpful it can be in managing the information. 

Whenever you go to the navigation pane and double-click on a particular table, then the view in which the table opens is called a datasheet view. You can mark the important section of your table in this section. It is best suitable for viewing and editing the entries. At the bottom left corner of the datasheet view, you will be able to see the number of records in the table. 

An example of how a table looks like in datasheet view (image source: google) 

But if you want to set field names and their corresponding data types, you would need to go to the design view. In design view, it’s actually easy to manage view, and it controls the overall layout of the table that you are seeing.  

So when we open the design view, we can create the table by following these simple, easy steps- 

• In the Design view, go to the application ribbon, select the Create tab, and then the Table Design button. 

• Adding fields– You can add fields such as name, address, zip code, PAN  card details, aadhar card, etc. 

After adding the fields, it should look like this. (image source: google) 

• Adjusting the data types– Now, you need to think about which field would contain what type of data type and select the data type accordingly. One thing to be noted here is if any particular data type doesn’t need any calculations, then that data type can be selected as text instead of a number. Say suppose, even though the zip code of a particular person’s address is not typically a text, we can still select the data type as text instead of a number since we usually don’t perform any calculations on someone’s zip code. 

But on the other hand, someone’s salary field should be set as a number because you may need to calculate salary and apply deductions to it; hence, it is always suggested to do it this way. 

• While you save a table, maybe you would be prompted by Access to create a primary key. It’s a good practice always to accept the suggestion and create a  primary key, the importance of which we will explain in the later part of this tutorial.