网站大量收购闲置独家精品文档,联系QQ:2885784924

第10讲-数据库实现(数据库语言).ppt

  1. 1、本文档共93页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第10讲-数据库实现(数据库语言)

第5部分:数据库实现 数据库语言SQL 教 师:朱征宇 单 位:重庆大学计算机学院 1 SQL历史 ☆ 2 SQL数据定义语言(DDL) ☆ 3 SQL查询语言(QL)的基本结构 ☆ 4 附加的基本运算 ☆ 5 集合运算 ☆ 6 空值 ☆ 7 聚集函数 ☆ 8 嵌套子查询 ☆ 9 数据库的修改 ☆ 10 连接表达式 ☆ 11 视图 ☆ 12 事务 ☆ 13 完整性约束 ☆ 14 其它数据类型及索引 ☆ 15 授权 ☆ Joined Relations(Cont.) Join condition – defines which tuples in the two relations match, and what attributes are present in the result of the join. Join type – defines how tuples in each relation that do not match any tuple in the other relation (based on the join condition) are treated. 是否可以对视图进行数据更新? 原则上,可以通过视图对数据库数据进行更新。 在DBMS内部,它是通过转换为对基本表的更新操作来实现的。 什么情形才可以对视图进行数据更新? 只能在少部分特殊视图(通俗地称为“行列视图”)上进行数据更新操作(例子) 但通常,结果是难以预测的(例子) Materialized Views Materializing a view: create a physical table containing all the tuples in the result of the query defining the view If relations used in the query are updated, the materialized view result becomes out of date Need to maintain the view, by updating the view whenever the underlying relations are updated. Transactions Unit of work Atomic transaction either fully executed or rolled back as if it never occurred Isolation from concurrent transactions Transactions begin implicitly Ended by commit work or rollback work But default on most databases: each SQL statement commits automatically Can turn off auto commit for a session (e.g. using API) In SQL:1999, can use: begin atomic …. end Not supported on most databases *Assertion Example Every loan has at least one borrower who maintains an account with a minimum balance greater or equal to $1000.00 (与原PPT不同) 每笔贷款(可能多个贷款人)的贷款人中至少有一人的账户余额不小于1000.00美元 create assertion balance_constraint check (not exists ( select * from loan where not exists ( select * from borrower, depositor, account where loan.loan_number = borrower.loan_number 原组变量 and borrower.customer_name = depositor.customer_name and depositor.account_number = account.account_number

文档评论(0)

wyjy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档