answersLogoWhite

0


Best Answer

A relational table is a storage structure in a Relational Database Management System (RDBMS). A table consists of rows and columns. Each row is one record in the table and a column refers to the attributes/characteristics that are stored for each record. Unique identifier values are used for records so records in one table can be associated (related) with specific records in another table. Below is an example to explain this.

If you are tracking business contacts and want to track their name, email address, the name of their company and the address of the company's headquarters. If you were to do this in a spreadsheet, you would create column headings for the person's Name, Email Address, Company Name, Company HQ Address. However, if more than one person works at the same company, you have to store the Company Name and HQ Address multiple times. That is, in the record for each person at that company.

In a RDBMS, a relational table is created for Contact and another for Company. The Contact table would have columns for Contact ID, Name, Email Address and Company ID. The Company table would have columns for Company ID, Company Name and HQ Address. Instead of storing the Company information multiple times, you store the information for each Company in only one record. In the Contact table, you put the Company ID value for the Contact's Company in the Contact table's Company ID column.

Now, if the company moves, you only have to change one record in the Company table and all the Contact information is automatically associated with the right address. When the RDBMS gathers the contact information together, the Company ID serves as a pointer to the location of the Company information "related" to the contact.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is meant by a Relational table?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Relationship between a database and a table?

A table is contained within the database and consists of columns and rows. A table is meant to store data and, in relational databases, are related to other tables within the same database.


What is the relational database?

Relational database: Relational database means a collection data stored in different tables and each table are linked together by using primary key and foreign key. In relational database, data can be accessed from one table to another without reorganising the required table. The relational database was invented by E. F. Codd at IBM in 1970.


What is the building block of a relational database?

I think "TABLE" is the main building block of relational database


In a relational database can two or more tables be liked to appear as one table?

Yes. That is how relational database work.


It is possible to have more than one table in a relational database?

You have to have more than one table in a relational database. In a relational database tables are designed to be related to other tables, so there has to be a minimum of two tables. Quite often there are a lot more than two.


In relational table two row are identical is true or false?

False.


A developer of a relational database refers to a field as a?

A field in a relational database refers to a specific piece of information stored in a table, representing a single attribute about an entity. It is the smallest unit of data in a database table and each field typically corresponds to a column in the table.


What are the components of relational database?

Table, index, trigger and column Table, index, trigger and column


How many tables are in a relational database?

A table consists of two or more records.


The developer of a relational database refers to a file as an?

In the context of a relational database, a file is commonly referred to as a table. A table is structured in rows and columns to store related data in a database system. Each table represents a specific entity or concept within the database.


Attributes in relational database?

In a relational database, attributes are the characteristics or properties that describe entities in a table. Attributes are represented by columns in a table and hold specific pieces of data related to the entities. Each attribute has a data type that defines the kind of data it can store (e.g., integer, string, date).


What is a relational operator that yields values from all rows in a table is called?

'select' operator