Difference between revisions of "Relational database"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(First)
 
(cf Entity-relationship model)
Line 12: Line 12:
  
 
Virtually all relational database systems use [[Structured Query Language]] (SQL) as the language for querying and maintaining the database.
 
Virtually all relational database systems use [[Structured Query Language]] (SQL) as the language for querying and maintaining the database.
 +
 +
== See also ==
 +
 +
* [[Entity-relationship model]]
  
 
== External links ==
 
== External links ==
  
 
* [https://en.wikipedia.org/wiki/Relational_database Relational database] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Relational_database Relational database] @ Wikipedia

Revision as of 18:01, 5 June 2015

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.

See also

External links