中图网文创礼盒,买2个减5元
欢迎光临中图网 请 | 注册
> >>
数据库处理——基础、设计与实现(第十一版)(英文版)

数据库处理——基础、设计与实现(第十一版)(英文版)

出版社:电子工业出版社出版时间:2010-07-01
开本: 16 页数: 607页
中 图 价:¥59.3(7.9折) 定价  ¥75.0 登录后可看到会员价
暂时缺货 收藏
运费6元,满69元免运费
?快递不能达地区使用邮政小包,运费14元起
云南、广西、海南、新疆、青海、西藏六省,部分地区快递不可达
本类五星书更多>

数据库处理——基础、设计与实现(第十一版)(英文版) 版权信息

数据库处理——基础、设计与实现(第十一版)(英文版) 本书特色

《数据库处理:基础、设计与实现(第11版)(英文版)》:提前介绍了SQL查询使用“螺旋方法”进行数据库设计为数据建模和数据库设计使用了一种通用的信息工程“鸦脚”E-R模型详细探讨了实际规范技术中的特定范式使用了*新的DBMS技术:Microsoft Access 2007,Microsoft SQL.Setver 2008,Oracle Database 11g,MySQI 5.1基于广泛使用的Web开发技术,创建了Web数据库应用简介了商务智能系统探讨了数据仓库和联机分析处理数据库设计中使用的维数据库概念

数据库处理——基础、设计与实现(第十一版)(英文版) 目录

Preface xviiPART 1 GETTING STARTEDChapter 1:IntroductionChapter ObjectivesThe Characteristics of DatabasesA Note on Naming ConventionsA Database Has Data and RelationshipsDatabases Create InformationDatabase ExamplesSingle-User Database ApplicationsMultiuser Database ApplicationsE-Commerce Database ApplicationsReporting and Data Mining Database ApplicationsThe Components of a Database SystemDatabase Applications and SQLThe DBMSThe DatabasePersonal Versus Enterprise-Class Database SystemsWhat Is Microsoft Access?What Is an Enterprise-Class Database System?Database DesignDatabase Design from Existing DataDatabase Design for New Systems DevelopmentDatabase RedesignWhat You Need to LearnA Brief History of Database ProcessingThe Early YearsThe Emergence and Dominance of the Relational ModelPost-Relational DevelopmentsSummaryKey TermsReview QuestionsProject QuestionsChapter 2:Introduction to Structured Query LanguageChapter ObjectivesCape Codd Outdoor SportsThe Retail Sales Data ExtractionRETAIL_ORDER DataORDER ITEM DataSKU_DATA TableData Extracts Are CommonSQL BackgroundThe SQL SELECT/FROM/WHERE FrameworkReading Specified Columns from a Single TableReading Specified Rows from a Single TableReading Specified Columns and Rows from a Single TableSubmitting SQL Statements to the DBMSUsing SQL in Microsoft Access 2007Using SQL in Microsoft SQL Server 2008Using SQL in Oracle Database 11gUsing SQL in Sun Microsystems MySQL 5.1SQL Enhancements for Querying a Single TableSorting the ResultsSQL WHERE Clause OptionsCombing the SQL WHERE Clause and the SQL ORDER BY ClausePerforming Calculations in SQL QueriesUsing SQL Built-in FunctionsSQL Expressions in SQL SELECT StatementsGrouping in SQL SELECT StatementsLooking for Patterns in NASDAQ TradingInvestigating the Characteristics of the DataSearching for Patterns in Trading by Day of WeekQuerying Two or More Tables with SQLQuerying Multiple Tables with SubqueriesQuerying Multiple Tables with JoinsComparing Subqueries and JoinsSummaryKey TermsReview QuestionsProject QuestionsMarcia's Dry CleaningMorgan ImportingPART 2 DATABASE DESIGNChapter 3:The Eelational Model and NormalizationChapter ObjectivesRelational Model TerminologyRelationsCharacteristics of RelationsAlternative TerminologyFunctional DependenciesFinding Functional DependenciesKeysNormal FormsModification AnomaliesA Short History of Normal FormsNormalization CategoriesFrom First Normal Form to Boyce-Codd Normal FormEliminating Anomalies from Functional DependenciesEliminating Anomalies from Multivalued DependenciesFifth Normal FormDomain/Key Normal FormSummaryKey TermsReview QuestionsProject QuestionsMarcia's Dry CleaningMorgan ImportingChapter 4:Database Design Using NormalizationChapter ObjectivesAssess Table StructureDesigning Updatable DatabasesAdvantages and Disadvantages of NormalizationFunctional DependenciesNormalizing withChoosing Not to Use BCNFMultivalued DependenciesDesigning Read-Only DatabasesDenormalizationCustomized Duplicated TablesCommon Design ProblemsThe Multivalue, Multicolumn ProblemInconsistent ValuesMissing ValuesThe General-Purpose Remarks ColumnSummaryKey TermsReview QuestionsProject QuestionsMarcia's Dry CleaningMorgan ImportingChapter 5:Data Modeling with the Entity-Relationship ModelChapter ObjectivesThe Purpose of a Data ModelThe Entity-Relationship ModelEntitiesAttributesIdentifiersRelationshipsMaximum CardinalityMinimum CardinalityEntity-Relationship Diagrams and Their VersionsVariations of the E-R ModelE-R Diagrams Using the IE Crow's Foot ModelStrong Entities and Weak EntitiesID-Dependent EntitiesNon-ID-Dependent Weak EntitiesSubtype EntitiesPatterns in Forms, Reports, and E-R ModelsStrong Entity PatternsID-Dependent RelationshipsMixed Identifying and Nonidentifying PatternsThe For-Use-By PatternRecursive PatternsThe Data Modeling ProcessThe College ReportThe Department ReportThe Department/Major ReportThe Student Acceptance LetterSummaryKey TermsReview QuestionsProject QuestionsMarcia's Dry CleaningMorgan ImportingChapter 6:Transforming Data Models into Database DesignsChapter ObjectivesCreate a Table for Each EntitySelecting the Primary KeySpecifying Candidate (Alternate) KeysSpecify Column PropertiesVerify NormalizationCreate RelationshipsRelationships Between Strong EntitiesRelationships Using ID-Dependent EntitiesRelationships with a Weak Non-ID-Dependent EntiyRelationships in Mixed Entity DesignsRelationships Between Supertype and Subtype EntitiesRecursive RelationshipsRepresenting Ternary and Higher-Order RelationshipsRelational Representation of the Highline University Data ModelDesign for Minimum CardinalityActions When the Parent Is RequiredActions When the Child Is RequiredImplementing Actions for M-O RelationshipsImplementing Actions for O-M RelationshipsImplementing Actions for M-M RelationshipsDesigning Special Case M-M RelationshipsDocumenting the Minimum Cardinality DesignAn Additional ComplicationSummary of Minimum Cardinality DesignThe View Ridge Gallery DatabaseSummary of RequirementsThe View Ridge Data ModelDatabase Design with Data KeysMinimum Cardinality Enforcement for Required ParentsMinimum Cardinality Enforcement for the Required ChildColumn Properties for the View Ridge Database Design TablesSummaryKey TermsReview QuestionsProject QuestionsMarcia's Dry CleaningMorgan ImportingPART 3 DATABASE IMPLEMENTATIONChapter 7:SQL for Database Construction and Application ProcessingChapter ObjectivesThe View Ridge Gallery DatabaseSQL DDL, DML, and a New Type of Join……PART 4 MULTIUSER DATABASE PROCESSINGPART 5 DATABASE ACCESS STANDARDSAPPENDICESBibliographyGlossaryIndex
展开全部

数据库处理——基础、设计与实现(第十一版)(英文版) 节选

《数据库处理:基础、设计与实现(第11版)(英文版)》从基础、设计和实现三个层面介绍数据库处理技术,内容全面翔实,既包括数据库设计、数据库实现、多用户数据处理、数据访问标准等经典理论,也包括商务智能、XML和NET等*新技术。《数据库处理:基础、设计与实现(第11版)(英文版)》在内容编排和写作风格上新颖,强调学习过程中的乐趣,围绕两个贯穿全书的项目练习,让读者从一开始就能把所学的知识用于解决具体的应用实例。《数据库处理:基础、设计与实现(第11版)(英文版)》每章都有丰富的习题,可作为高校本科生或研究生的数据库课程的双语教材,同时也是一本很好的专业参考书。

数据库处理——基础、设计与实现(第十一版)(英文版) 相关资料

插图:Wow!That was a full chapter!Structured Query Language (SQL) was developed by IBM and has been endorsed by the ANSI SQL-92 and following standards. SQL is a data sublanguage that can be embedded into full programming languages or submitted directly to the DBMS. Knowing SQL is critical for knowledge workers, application programmers, and database administrators.All DBMS products process SQL. Access hides SQL, but SQL Server, Oracle, DB2, and MySQL require that you use itThere are basically two kinds of SQL statements: DML and DDL statements. DML statements include statements for querying data and for inserting, updating, and deleting data. This chapter addresses only DML query statements.The examples in this chapter are based on three tables extracted from the operational database at Cape Codd Outdoor Sports. Such database extracts are common and important. Sample data for the three tables is shown in Figure 2-4.The basic structure of an SQL query statement is SELECT/FROM/WHERE. The columns to be selected are listed after SELECT, the table(s) to process is listed after FROM, and any restrictions on data values are listed after WHERE. In a WHERE clause, character and date data values must be enclosed in single quotes. Numeric data need not be enclosed in quotes. You can submit SQL statements directly to Access, SQL Server, Oracle, and MySQL, as described in this chapter.

数据库处理——基础、设计与实现(第十一版)(英文版) 作者简介

作者:(美国)克罗恩克(David M.Kroenke) (美国)奥尔(David Auer)

商品评论(0条)
暂无评论……
书友推荐
返回顶部
中图网
在线客服