Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Components of a table (of a database)

SQL Tables

A table is a collection of rows having one or more columns. A row is an instance of a row type. Every row of the same table has the same row type. The value of the n-th field of every row in a table is the value of the n-th column of that row in the table. The row is the smallest unit of data that can be inserted into a table and deleted from a table.
The number of rows in a table is its cardinality. A table whose cardinality is 0 (zero) is said to be empty.

Following image are pictorial presentation of a table and different components of it :

Components of a table

A column name can be used in more than one tables and to maintain the integrity of data and reduce redundancy. This is called a relation.

Elements of a table

Components of a table - fields or columns

The information of a table stored in some heads, those are fields or columns. Columns show vertically in a table.

Components of a table - column name

Each field or column has an individual name. A table cannot contain the same name of two different columns

Components of a table - record

All the columns in a table make a row. Each row contains all the information of individual topics.

Components of a table - column value

The value of each field makes a row is the column value.

Components of a table - key field

Each table should contain a field which can create a link with another one or more table is the key field of a table.

Practice SQL Exercises

Want to improve the above article? Contribute your Notes/Comments/Examples through Disqus.

Previous: Codd's 12-Rule Relational Database Definition
Next: Create/Alter/Drop Schema



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3