📄 rel-ops.txt
字号:
In order to perform the this query, I have used Project, Select
and Join operations.
Project: Select the attributes specified on an attribute_list from
the table BOOK, that is "Title" and "Price".
Select: Selects some rows in the table BOOK that satisfy a selection
condition (alias predicate). That is "WHERE (BOOK.PubID=PUBLISHER.PubID) AND(PUBLISHER.Name='DannyShum' or PUBLISHER.Name='LionLi')".
Join: The Join operation combines two tables, thereby allowing us to obtain more information.
To be combined, the rows from each table must satisfy a joining condition.
That is "WHERE (BOOK.PubID=PUBLISHER.PubID) AND(PUBLISHER.Name='DannyShum' or PUBLISHER.Name='LionLi')".
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -