《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 27 Formal-Relational Query Languages

Outline Tuple Relational Calculus Domain Relational Calculus ■ Datalog Database System Concepts-7th Edition 27.2 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 27.2 ©Silberschatz, Korth and Sudarshan th Edition Outline ▪ Tuple Relational Calculus ▪ Domain Relational Calculus ▪ Datalog

Tuple Relational Calculus Database System Concepts -7th Edition 27.3 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 27.3 ©Silberschatz, Korth and Sudarshan th Edition Tuple Relational Calculus

Tuple Relational Calculus A nonprocedural query language,where each query is of the form {t|P(t)} It is the set of all tuples t such that predicate P is true for t ■t is a tuple variable t [A denotes the value of tuple t on attribute A f e r denotes that tuple t is in relation r P is a formula similar to that of the predicate calculus Database System Concepts-7th Edition 27.4 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.4 ©Silberschatz, Korth and Sudarshan th Edition Tuple Relational Calculus ▪ A nonprocedural query language, where each query is of the form {t | P (t ) } ▪ It is the set of all tuples t such that predicate P is true for t ▪ t is a tuple variable ▪ t [A ] denotes the value of tuple t on attribute A ▪ t r denotes that tuple t is in relation r ▪ P is a formula similar to that of the predicate calculus

Predicate Calculus Formula Set of attributes and constants Set of comparison operators:(e.g,,≥) ■ Set of connectives:and (A),or (v),not ( ■Implication(→):x→y,if x if true,then y is true X→y=XVy Set of quantifiers: ·3t∈r(Q(t)="there exists”a tuple in t in relation r such that predicate Q(t)is true 。tt∈r(Q(t))=Q is true“for all"tuples t in relation r Database System Concepts-7th Edition 27.5 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.5 ©Silberschatz, Korth and Sudarshan th Edition Predicate Calculus Formula ▪ Set of attributes and constants ▪ Set of comparison operators: (e.g., , , =, , , ) ▪ Set of connectives: and (), or (v)‚ not () ▪ Implication (): x y, if x if true, then y is true x y x v y ▪ Set of quantifiers: • t r (Q (t )) ”there exists” a tuple in t in relation r such that predicate Q (t ) is true • t r (Q (t )) Q is true “for all” tuples t in relation r

Example Queries Find the ID,name,dept_name,salary for instructors whose salary is greater than $80,000 {t|t e instructor^t[salary >80000) Notice that a relation on schema (ID,name,dept_name,salary)is implicitly defined by the query As in the previous query,but output only the /D attribute value (t3s einstructor (t [ID ]=s [ID ]^s [salary ]>80000)) Notice that a relation on schema(/D)is implicitly defined by the query Database System Concepts-7th Edition 27.6 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.6 ©Silberschatz, Korth and Sudarshan th Edition Example Queries ▪ Find the ID, name, dept_name, salary for instructors whose salary is greater than $80,000 ▪ As in the previous query, but output only the ID attribute value {t | s instructor (t [ID ] = s [ID ] s [salary ] 80000)} {t | t instructor t [salary ] 80000} Notice that a relation on schema (ID) is implicitly defined by the query Notice that a relation on schema (ID, name, dept_name, salary) is implicitly defined by the query

Example Queries Find the names of all instructors whose department is in the Watson building {t|3s e instructor(t [name]=s [name Au∈department(u[dept_name]=s[dept_name]“ Au[building]=“Vatson"”)} Find the set of all courses taught in the Fall 2009 semester,or in the Spring 2010 semester,or both {t3s e section(t [course_id]=s [course_id] s [semester]="Fall^s [year]=2009 v3ue section(t [course_id]=u [course_id] u[semester]=“Spring'”^u [year]=2010)} Database System Concepts-7th Edition 27.7 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.7 ©Silberschatz, Korth and Sudarshan th Edition Example Queries ▪ Find the names of all instructors whose department is in the Watson building ▪ Find the set of all courses taught in the Fall 2009 semester, or in the Spring 2010 semester, or both {t | s section (t [course_id ] = s [course_id ] s [semester] = “Fall” s [year] = 2009 v u section (t [course_id ] = u [course_id ] u [semester] = “Spring” u [year] = 2010 )} {t | s instructor (t [name ] = s [name ] u department (u [dept_name ] = s[dept_name] “ u [building] = “Watson” ))}

Example Queries Find the set of all courses taught in the Fall 2009 semester,and in the Spring 2010 semester (t |3s e section (t [course_id]=s [course_id s [semester]="Fall"^s [year]2009 A3u∈section(t[course_id]=u[course_id]∧ u[semester]=“Spring”∧u [year]=2010)} ■ Find the set of all courses taught in the Fall 2009 semester,but not in the Spring 2010 semester {t |3s e section (t [course_id]=s [course_id s [semester]="Falls [year]2009 3ue section (t [course_id ]=u [course_id] u[semester]=“Spring”Au[year]=2010)} Database System Concepts-7th Edition 27.8 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.8 ©Silberschatz, Korth and Sudarshan th Edition Example Queries {t | s section (t [course_id ] = s [course_id ] s [semester] = “Fall” s [year] = 2009 u section (t [course_id ] = u [course_id ] u [semester] = “Spring” u [year] = 2010 )} ▪ Find the set of all courses taught in the Fall 2009 semester, and in the Spring 2010 semester ▪ Find the set of all courses taught in the Fall 2009 semester, but not in the Spring 2010 semester {t | s section (t [course_id ] = s [course_id ] s [semester] = “Fall” s [year] = 2009 u section (t [course_id ] = u [course_id ] u [semester] = “Spring” u [year] = 2010 )}

Universal Quantification Find all students who have taken all courses offered in the Biology department {t3re student (t [ID]=r[ID]) (tu∈course(u[dept_name]=“Biology”→ 3s e takes (t [ID]=s [ID s [course_id]=u [course_id )) Database System Concepts-7th Edition 27.9 @Silberschatz,Korth and Sudarshan
Database System Concepts - 7 27.9 ©Silberschatz, Korth and Sudarshan th Edition Universal Quantification ▪ Find all students who have taken all courses offered in the Biology department • {t | r student (t [ID] = r [ID]) ( u course (u [dept_name]=“Biology” s takes (t [ID] = s [ID ] s [course_id] = u [course_id]))}

Safety of Expressions It is possible to write tuple calculus expressions that generate infinite relations. For example,{ttr}results in an infinite relation if the domain of any attribute of relation ris infinite To guard against the problem,we restrict the set of allowable expressions to safe expressions. An expression {t P(t)}in the tuple relational calculus is safe if every component of t appears in one of the relations,tuples,or constants that appear in P NOTE:this is more than just a syntax condition. E.g.,{f|f [A]=5 v true is not safe---it defines an infinite set with attribute values that do not appear in any relation or tuples or constants in P. Database System Concepts-7th Edition 27.10 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.10 ©Silberschatz, Korth and Sudarshan th Edition Safety of Expressions ▪ It is possible to write tuple calculus expressions that generate infinite relations. ▪ For example, { t | t r } results in an infinite relation if the domain of any attribute of relation r is infinite ▪ To guard against the problem, we restrict the set of allowable expressions to safe expressions. ▪ An expression {t | P (t )} in the tuple relational calculus is safe if every component of t appears in one of the relations, tuples, or constants that appear in P • NOTE: this is more than just a syntax condition. ▪ E.g., { t | t [A] = 5 true } is not safe --- it defines an infinite set with attribute values that do not appear in any relation or tuples or constants in P

Safety of Expressions (Cont.) Consider again that query to find all students who have taken all courses offered in the Biology department 。 {t3rE student (t [ID]=r[ID]) (tu∈course(u[dept_name]=“Biology'→ 3s e takes (t [ID]=s [ID s [course_id]=u [course_id]))} Without the existential quantification on student,the above query would be unsafe if the Biology department has not offered any courses. Database System Concepts-7th Edition 27.11 ©Silberscha乜,Korth and Sudarshan
Database System Concepts - 7 27.11 ©Silberschatz, Korth and Sudarshan th Edition Safety of Expressions (Cont.) ▪ Consider again that query to find all students who have taken all courses offered in the Biology department • {t | r student (t [ID] = r [ID]) ( u course (u [dept_name]=“Biology” s takes (t [ID] = s [ID ] s [course_id] = u [course_id]))} ▪ Without the existential quantification on student, the above query would be unsafe if the Biology department has not offered any courses
按次数下载不扣除下载券;
注册用户24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 26 Blockchain Databases.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 25 Advanced Application Development.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 24 Advanced Indexing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 23 Parallel and Distributed Transaction Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 22 Parallel and Distributed Query Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 21 Parallel and Distributed Storage.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 20 Database System Architectures.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 2 Intro to Relational Model.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 19 Recovery System.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 18 Concurrency Control.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 17 Transactions.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 16 Query Optimization.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 15 Query Processing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 14 Indexing.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 13 Data Storage Structures.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 12 Physical Storage Systems.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 11 Data Analytics.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 10 Big Data.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 1 Introduction(Avi Silberschatz Henry F. Korth S. Sudarshan).pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第五版,PPT课件讲稿,英文版)Chapter 9 Object-Based Databases.ppt
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 28 Advanced Relational Database Design.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 29 Object-Based Databases.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 3 Introduction to SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 30 XML.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 31 Information Retrieval.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 4 Intermediate SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 5 Advanced SQL.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 6 Database Design Using the E-R Model.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 7 Normalization.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 8 Complex Data Types.pptx
- 《数据库系统概念 Database System Concepts》原书教学资源(第七版,PPT课件讲稿,英文版)Chapter 9 Application Development.pptx
- 计算机科学与技术教学资源(参考文献)The generalized Cholesky factorization method for saddle point problems.pdf
- 计算机科学与技术教学资源(参考文献)Inverse updating and downdating for weighted linear least squares using M-invariant reflections.pdf
- 计算机科学与技术教学资源(参考文献)Analysis of peaks and plateaus in a Galerkin/minimal residual pair of methods.pdf
- 计算机科学与技术教学资源(参考文献)Perturbation analysis for the generalized Cholesky factorization.pdf
- 计算机科学与技术教学资源(参考文献)STABILITY OF THE MATRIX FACTORIZATION FOR SOLVING BLOCK TRIDIAGONAL SYMMETRIC INDEFINITE LINEAR SYSTEMS.pdf
- 计算机科学与技术教学资源(参考文献)A Convergent Restarted GMRES Method For Large Linear Systems.pdf
- 计算机科学与技术教学资源(参考文献)Properties and Computations of Matrix Pseudospectra.pdf
- 计算机科学与技术(参考文献)A Novel Constrained Texture Mapping Method Based on Harmonic Map.pdf
- 计算机科学与技术(参考文献)A Robust and Fast Non-local Algorithm for Image Denoising.pdf