关系代数基本运算_关系代数的基本和附加运算

关系代数基本运算

Definition

定义

Every DBMS must define a query language to enable users to access the data which is stored in the database. Relational Algebra is a procedural query language. It is used to query the database tables in order to access data in several ways. In this algebra, the input is a relation and output is also a relation. Operators are used to performing queries. It can be either unary or binary operator.

每个DBMS必须定义一种查询语言,以使用户能够访问存储在数据库中的数据。 关系代数是一种过程查询语言。 它用于查询数据库表,以便以多种方式访问​​数据。 在这个代数中,输入是一个关系,输出也是一个关系。 运算符用于执行查询。 它可以是一元或二进制运算符。

Basic Operations

基本操作

  • SELECT (unary)

    SELECT(一元)

  • PROJECT (unary)

    项目(一元)

  • UNION (binary)

    UNION(二进制)

  • SET DIFFERENCE (binary)

    设置差异(二进制)

  • CARTESIAN PRODUCT (binary)

    笛卡尔积(二进制)

  • RENAME (unary)

    重命名(一元)

Other Operations

其他作业

  • SET INTERSECTION

    设置相交

  • NATURAL JOIN

    自然加入

  • DIVISION

  • ASSIGNMENT

    分配

1)选择运算(σ) (1) Select Operation (σ))

This is used to get rows (tuples) from the table (relation) which fulfill a given condition.

这用于从满足给定条件的表(关系)中获取行(元组)。

Syntax: σp(r)

语法: σp(r)

Where σ is used for the Select Predicate, r is the name of relation or table, and p is used as the propositional logic, where we give the conditions that must be fulfilled by the data. In this, unary and binary operators like =, etc., to mention the condition can be used.

其中σ用于Select谓词,r是关系或表的名称,而p用作命题逻辑,在此我们给出数据必须满足的条件。 在这种情况下,可以使用一元和二进制运算符(例如=等)来提及条件。

Example: Student table and get data for students with age more than 20.

示例: Student表并获取20岁以上学生的数据。

σage> 20 (Student)

年龄> 20(学生)

2)项目运营(∏) (2) Project Operation (∏))

Project operation is used to project or show only a desired set of attributes of a relation. In other words, if we wish to see only the names all of the students in the Student table, then the project operation can be used. It will only project the columns or attributes chosen and will delete duplicate data from the columns.

项目操作用于计划或仅显示关系的所需属性集。 换句话说,如果我们希望仅在“学生”表中看到所有学生的姓名,则可以使用项目操作。 它只会投影选定的列或属性,并且将从列中删除重复的数据。

Syntax: ∏A1, A2...(r)

语法: ∏A1,A2 ...(r)

Here A1, A2 etc. are attribute names (name of columns).

在此,A1,A2等是属性名称(列名)。

Example:

例:

∏Name, Age(Student)

∏姓名,年龄(学生)

3)联合行动(∪) (3) Union Operation (∪))

This is used to fetch data from two (relations)tables or temporary relations (the result of other operation).

这用于从两个(关系)表或临时关系(其他操作的结果)中获取数据。

For union operation to work, the condition is that the relations(tables) taken should have an equal number of attributes(columns) and equal attribute domain. Even the duplicate tuples are automatically removed from the result.

为了使联合操作起作用,条件是所采用的关系(表)应具有相等数量的属性(列)和相等的属性域。 即使重复的元组也会自动从结果中删除。

Syntax: P ∪ Q

语法: P∪Q

Where P and Q are relations.

其中PQ是关系。

Example: if we have two tables Regular class and Extra class, both have an attribute student to save the name of the student, then,

示例:如果我们有两个表常规班级和额外班级,它们都具有属性student来保存学生的姓名,那么,

∏Student(Regular class) ∪ ∏Student(Extra class)

∏学生(普通班)∪学生(普通班)

4)设置差异(-) (4) Set Difference (-))

This operation is used to find data which present in one relation but not present in the other relation. This operation can be applied to two relations, just like the Union operation.

此操作用于查找以一种关系存在但不以另一种关系存在的数据。 就像联合操作一样,此操作可以应用于两个关系。

Syntax: P - Q

语法: P-Q

Where P and Q are relations.

其中PQ是关系。

Example: if we want to find the name of students who take the regular class but miss the extra class, then, the below operation can be used as:

示例:如果我们想查找参加普通班但错过额外班级的学生的姓名,则可以将以下操作用作:

∏Student(Regularclass) - ∏Student(Extraclass)

∏学生(普通班)-∏学生(额外班)

5)笛卡尔积(X) (5) Cartesian Product (X))

This operation is used to combine data of two separate relations into single and fetch data from the combined result relation.

此操作用于将两个单独关系的数据合并为单个数据,并从合并结果关系中获取数据。

Syntax: A X B

语法: AXB

Example: to find the information for Regular Class and Extra Class which are conducted in the morning, then, the following operation can be used:

示例:要查找早晨进行的常规班和额外班的信息,则可以使用以下操作:

σtime = 'morning' (Regularclass X Extraclass)

σtime='早晨'(常规类X附加类)

6)重命名操作(ρ) (6) Rename Operation (ρ))

Rename operation is used to change the name or rename the output relation for any query operation which returns or gives the result like Select, Project etc. Or in simple words to rename a relation(table).

重命名操作用于为返回或给出诸如Select,Project等结果的任何查询操作更改名称或重命名输出关系。或者用简单的语言重命名关系(表)。

Syntax: ρ(Relationnew, Relationold)

语法: ρ(Relationnew,Relationold)

翻译自: https://www.includehelp.com/dbms/basic-and-additional-operations-of-relational-algebra.aspx

关系代数基本运算

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380145.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

远控免杀专题 14 ---AVIator

0x01 免杀能力一览表 几点说明: 1、上表中标识 √ 说明相应杀毒软件未检测出病毒,也就是代表了Bypass。 2、为了更好的对比效果,大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

面型对象 (包package)

面向对象(package关键字的概述及作用) 为什么要有包 将字节码(.class)进行分类存放 包其实就是文件夹 代码如下: package beyond.hjj;//在当前运行目录下创建一个子目录结构beyond\hjj,在子目录下存放已经编译成字节码文件的clown.class类。 class c…

【Web开发】级联查询(Ajax/ jQuery/ Servlet)

实现级联查询 共有两个下拉框&#xff0c;第一级为学院&#xff0c;第二级为学院开设的科目。 实现的功能为&#xff1a;当改变学院的选择&#xff0c;第二级下拉框需变为对应学院开设的科目内容。 结果预览&#xff1a; jsp页面 <% page contentType"text/html;…

asp.net treeView绑定

这个东西不是什么复杂的东西&#xff0c; 帮着小兄弟写个Demo, 实现个Binding public partial class _Default : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Bind(); } } priv…

关于TOmcat的一些小小的知识

web.xml中的url-pattern和form 表单中的action是相同的。form 表单中的action声明的并不是servlet的名字 例&#xff1a; <servlet> <servlet-name>welcome</servlet-name> <servlet-class>WelcomeYou</servlet-class> </servlet> <ser…

Java文件类字符串getAbsolutePath()方法(带示例)

文件类字符串getAbsolutePath() (File Class String getAbsolutePath()) This method is available in package java.io.File.getAbsolutePath(). 软件包java.io.File.getAbsolutePath()中提供了此方法。 This method is used to return the absolute path of the file object …

远控免杀专题(15)-DKMC免杀

0x01 免杀能力一览表 几点说明&#xff1a; 1、上表中标识 √ 说明相应杀毒软件未检测出病毒&#xff0c;也就是代表了Bypass。 2、为了更好的对比效果&#xff0c;大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

面向对象(静态成员内部类的调用)

class beyond{public static void main(String []args){//外部类名.内部类名 对象名 外部类名.内部类对象(new 内部类名)/*Outer.Inner yy Outer.new Inner(); 类里面有个非静态方法&#xff0c;需要new创建Inner对象;正常的形式是这样的&#xff0c;但是我们习惯将new放在前…

SQL——以面向集合的思维方式来思考

本文来自&#xff1a;http://www.ituring.com.cn/article/details/472 为了以有趣的方式更好地帮助你形成面向集合的思维方式&#xff0c;我将给出自己最喜欢的游戏之一——集合。你可以在线玩这个游戏&#xff0c;网址是www.setgame.com/puzzle/set.htm&#xff0c;每天都会贴…

转载: 统计图控件NetCharting 和ZedGraph的比较

原文出处&#xff1a;http://hi.baidu.com/goga/blog/item/07b3024f61b8cd35aec3ab47.html最近考察了几个统计图表控件包&#xff0c;开源的有ZedGraph&#xff0c;Nplot等&#xff0c;但是相比之下还是ZedGraph强大&#xff0c;方便一些&#xff0c;其他的感觉还是半成品。收费…

【汇编语言】状态标志符(CF/OF/SF/ZF)在运算(ADD/SUB/ADC/SBB)过程中的响应变化

目录各类运算时状态标志的响应变化标志符在各种ADD运算下的响应情况标志符在各种SUB运算下的响应情况借助标志符实现多位数之间运算ADC(add with carry)带进位加法指令SBB(subtract with borrow)带借位减法指令各类运算时状态标志的响应变化 标志符具体含义CF&#xff08;Carr…

Java集合unmodifiableSortedSet()方法(带示例)

集合类unmodifiableSortedSet()方法 (Collections Class unmodifiableSortedSet() method) unmodifiableSortedSet() method is available in java.util package. unmodifiableSortedSet()方法在java.util包中可用。 unmodifiableSortedSet() method is used to get a non-modi…

远控免杀专题(16)-Unicorn免杀

0x01 免杀能力一览表 几点说明&#xff1a; 1、上表中标识 √ 说明相应杀毒软件未检测出病毒&#xff0c;也就是代表了Bypass。 2、为了更好的对比效果&#xff0c;大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

面向对象(匿名内部类在开发中的应用)

匿名内部类在开发中的应用 public class test1_NoNameInner {public static void main(String[] args) {PersonDemo yy new PersonDemo();//yy.method(new Student());yy.method(new Person() {public void show(){System.out.println("show");}});//匿名内部类当作…

【汇编语言】乘法(MUL/IMUL)

乘法&#xff08;MUL/IMUL&#xff09; 目录乘法&#xff08;MUL/IMUL&#xff09;IMUL(signed multiply)有符号数乘法MUL(unsigned multiply)无符号数乘法麻&#xff01;属实是被这个有符号乘法给整麻了&#xff0c;教材就一行例子直接不解释了&#xff0c;关于标志位溢出的一…

【转】MFC学习总结

HBRUSH CAboutDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) { if ((pWnd->GetDlgCtrlID() IDC_EDIT1) && (nCtlColor CTLCOLOR_EDIT)) {   COLORREF clr RGB(255,0,0);   pDC->SetTextColor(clr);  //设置红色的文本   clr RGB(0,0,0…

NHibernate初学体验进阶篇

在上篇《NHibernate初学体检记》中&#xff0c;我参照NHibernate官方快速指南写了两个示例项目&#xff0c;在示例2的源码中充斥了如下类似的代码&#xff1a;<?XML:NAMESPACE PREFIX O />Configuration cfg new Configuration(); cfg.AddAssembly("…

eclipse快捷键

Java开发工具(Eclipse的视窗和视图概述) A:视窗 每一个基本的窗体被称为视窗 PackageExplorer 显示项目结构&#xff0c;包&#xff0c;类&#xff0c;及资源Outline 显示类的结构&#xff0c;方便查找&#xff0c;识别&#xff0c;修改Console 程序运行的结果在该窗口显示Hie…

【汇编语言】除法(DIV/IDIV)

除法&#xff08;DIV/IDIV&#xff09; 目录除法&#xff08;DIV/IDIV&#xff09;DIV(unsigned divide)无符号数除法IDIV(signed divide)有符号数除法DIV(unsigned divide)无符号数除法 格式&#xff1a;DIV SRC 操作&#xff1a; SRCSRCSRC为字节时&#xff0c;(AL)←(AX)/…

java 方法 示例_Java集合syncedSortedSet()方法与示例

java 方法 示例集合类SynchronizedSortedSet()方法 (Collections Class synchronizedSortedSet() method) synchronizedSortedSet() method is available in java.util package. java.util软件包中提供了sharedSortedSet ()方法 。 synchronizedSortedSet() method is used to …