A Database is a structured collection of data organized into rows and columns, typically presented as tables. In a Relational Database Management System (RDBMS), data is stored in tables, and relationships between tables are established using primary keys and foreign keys.
A table is a collection of rows having one or more columns
The number of rows in a table is its cardinality. A table whose cardinality is 0 (zero) is said to be empty.
Arity the number of columns in the table.
Elements of a table
The information of a table stored in some heads, those are fields or columns. Columns show vertically in a table.
Each field or column has an individual name. A table cannot contain the same name of two different columns
All the columns in a table make a row. Each row contains all the information of individual topics.
The value of each field makes a row is the column value.
Each table should contain a field which can create a link with another one or more table is the key field of a table.