Home  >  Article  >  Database  >  What are the relational operations unique to relational databases?

What are the relational operations unique to relational databases?

青灯夜游
青灯夜游Original
2020-10-21 16:47:547033browse

The unique relational operations of relational databases include: 1. Selection operation, which selects those records that meet the specified conditions from all records in the two-dimensional relational table; 2. Projection operation, selects from all fields Operate on some fields and their values, which is a vertical operation; 3. Join operation, perform a projection operation on two relationships to join and generate a new relationship.

What are the relational operations unique to relational databases?

(Recommended tutorial: mysql video tutorial)

The relational database system has three specialized relational operations.

1) Selection operation: Select those tuples that meet the limiting conditions from the given relationship.

2) Projection operation: Select the specified attribute group from all attributes of the given relationship in the required order.

3) Join operation: Splice the attribute names of two different relationships into a large relationship pattern. The attribute values ​​with the same nature in the two relationships should meet the limiting conditions. The new tuples after splicing these tuples The groups collectively form a new relationship after the join.

The above is the detailed content of What are the relational operations unique to relational databases?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn