Relational database

From Wiki @ Karl Jones dot com
Revision as of 06:25, 21 May 2015 by Karl Jones (Talk | contribs) (First)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A relational database is a digital database whose organization is based on the relational model of data, as proposed by E.F. Codd in 1970.

This model organizes data into one or more tables (or "relations") of rows and columns, with a unique key for each row.

Generally, each entity type described in a database has its own table, the rows representing instances of that type of entity and the columns representing values attributed to that instance.

Because each row in a table has its own unique key, rows in a table can be linked to rows in other tables by storing the unique key of the row to which it should be linked (where such unique key is known as a "foreign key").

Codd showed that data relationships of arbitrary complexity can be represented using this simple set of concepts.

The various software systems used to maintain relational databases are known as Relational Database Management Systems (RDBMS).

Virtually all relational database systems use Structured Query Language (SQL) as the language for querying and maintaining the database.

External links