- Shopping Bag ( 0 items )
Other sellers (Paperback)
-
All (19) from $1.99
-
New (6) from $31.81
-
Used (13) from $1.99
More About This Textbook
Overview
The SQL language has established itself as the linqua franca database management; it provides the basis for systems interoperability, application portability, client/server operation, distributed database, and more, and is supported by just about every DBMS on the market today. SQL2 - or, to give it its official name, the International Standard Database language SQL (1992) - represents a major set of extensions to the earlier SQL standard. For a start, the new specification is well over 600 pages, compared with less than 100 for the original version. No database professional can afford to ignore it.
Features
0201964260B04062001
Product Details
Related Subjects
Meet the Author
C. J. Date is an independent author, lecturer, researcher, and consultant specializing in relational database systems, a field he helped pioneer. Among other projects, he was involved in technical planning for the IBM products SQL/DS and DB2. He is best known for his books, in particular, An Introduction to Database Systems (7th edition, Addison-Wesley, 2000), the standard text in the field, which has sold well over half a million copies worldwide. Mr. Date is widely acknowledged for his ability to explain complex technical material in a clear and understandable fashion.
Hugh Darwen has been involved in software development since 1967 as an employee of IBM United Kingdom, Ltd. He has been active in the relational database arena since 1978. He was one of the chief architects and developers of an IBM relational product called Business System 12, a product that faithfully embraced the principles of the relational model. He has been an active participant in the development of SQL international standards since 1988.
0201964260AB04062001
Read an Excerpt
Several changes have occurred in the SQL standards world since the previous edition of this book was published. First of all, a major new component, the Call-Level Interface (SQL/CLI), was added to the standard in 1995. Second, another major new component, the Persistent Stored Modules feature (SQL/PSM), is currently under development (and indeed nearing completion); SQL/PSM is not yet part of the standard but is virtually certain to become so in the near future. Third, the original standard itself has been significantly changed and corrected through the publication of two Technical Corrigenda, one in 1994 and one in 1996. Taken together, these changes are more than sufficient to justify this new (fourth) edition. At the same time, I have taken the opportunity to extend and improve the text throughout in numerous ways, and in particular to correct a few errors. It is not an exaggeration to say that scarcely a sentence survives intact from the third edition.
Acknowledgments
Once again I must thank my coauthor Hugh Darwen for his invaluable contribution (especially in connection with the SQL/PSM and SQL3 appendixes). I would also like to thank Paul Cotton and Frank Pellow for their help with the material on SQL/CLI; Peter Pistor for pointing out an error in the treatment of foreign keys in the previous edition; Mike Sykes for assistance with questions regarding SQL's date and time support (especially in connection with time zones); and Mel Zimowski for assistance with questions regarding SQL's "global transaction" support. I am also indebted to Nelson Mattos, Frank Pellow, and Jeff Richey for their careful reviews of the manuscript.
Finally, I am (as always) deeply indebted to my wife, Lindy, for her support throughout this project; to my editor, Elydia Davis, for her usual sterling job; and to the staff at Addison-Wesley for their usual help and professionalism. Once again it has been a pleasure to work with them.
Healdsburg, California C. J. Date
1996
0201964260P04062001
Table of Contents
I. INTRODUCTION.
1. Why Sql is Important.
Background.
Is a Standard Desirable?
2. An Overview of Sql.
Introduction.
Data Definition.
Data Manipulation.
Cursor Operations.
Views.
Security and Integrity.
Recovery and Concurrency.
Schemas and Catalogs.
Sessions and Connections.
II. Some Preliminaries.
3. Basic Language Elements.
SQL Language Characters.
Tokens and Separators.
Key Words.
Identifiers and Names.
Scope of Names.
Notation.
4. Catalogs and Schemas.
The SQL-Environment.
Catalogs.
Schemas.
5. Connections, Sessions, and Transactions.
SQL-Agents
SQL-Connections
SQL-Sessions.
SQL-Transactions.
6. Binding Styles.
Introduction.
The Module Language.
Embedded Sql.
Direct Sql.
III. Data Definition and Manipulation.
7. Scalar Objects, Operators, and Expressions.
Introduction.
Data Types.
Literals.
Scalar Operators and Functions.
Aggregate Functions.
Assignments and Comparisons.
8. Data Definition: Domains and Base Tables.
Introduction.
Domains.
Base Tables.
9. Data Manipulation: Noncursor Operations.
Introduction.
Single-Row SELECT.
Insert.
Searched Update.
Searched Delete.
10. Data Manipulation: Cursor Operations.
Introduction.
Cursors.
Cursor-Based Manipulation Statements.
A Comprehensive Example (Module Version).
A Comprehensive Example (Embedded SQL Version).
11. Table Expressions.
Introduction.
Join Expressions.
Table References.
Unions, Differences, and Intersections.
Table Primaries.
Select Expressions.
Derived Table Column Names.
12. Conditional Expressions.
Introduction.
General Remarks.
Comparison Conditions.
BETWEEN and LIKE Conditions.
IN and MATCH Conditions.
ALL-Or-ANY Conditions.
EXISTS Conditions.
UNIQUE Conditions.
A Final Remark.
13. Views.
Introduction.
Data Definition Operations.
Data Manipulation Operations.
The Check Option.
IV. DATA CONTROL.
14. Integrity.
Introduction.
Domain Constraints.
General Constraints.
Base Table and Column Constraints.
Foreign Keys.
Deferred Constraint Checking.
15. Security.
Introduction.
Authorization Identifiers.
Privileges and Access Rules.
GRANT and REVOKE.
The Grant Option.
RESTRICT Vs CASCADE.
V. ADVANCED TOPICS.
16 Missing Information and Nulls.
Introduction.
Effect of Nulls on Scalar Expressions.
Effect of Nulls on Conditional Expressions.
Effect of Nulls on Table Expressions.
Effect of Nulls on Integrity Constraints.
A Recommendation.
17. Dates and Times.
Introduction.
Data Types.
Literals.
Time Zones.
Data Conversion.
Scalar Operators and Functions.
Assignments and Comparisons.
18. Temporary Tables.
Introduction.
Type 1: "Declared" Temporary Tables.
Types 2 and 3: "Created" Temporary Tables.
19. Character Data.
Introduction.
Properties of Character Strings.
Character Sets and Collations.
Data Types.
Literals.
Scalar Operators and Functions.
Assignments and Comparisons.
Character Sets For Identifiers.
20. Dynamic Sql.
Introduction.
What is The Problem?
Statement Preparation and Execution.
SQL Descriptor Areas.
Cursor Operations.
Session Defaults.
21. Information Schemas.
Introduction.
Information Schema Tables.
22. Exception Handling.
Status Codes.
The Diagnostics Area.
23. Call-Level Interface.
Introduction.
What is The Problem?
CLI Routines and Parameters.
CLI Resources and Related Matters.
Statement Preparation and Execution.
CLI Descriptor Areas.
Placeholders.
Retrieval Operations.
Exception Handling.
A Sample "SQLCLIH" File.
A Sample CLI Application.
APPENDIXES.
A. An Sql Grammar.
Introduction.
Sessions, Connections, and Transactions.
Data Definition.
Modules.
Data Manipulation.
Table Expressions.
Conditional Expressions.
Constraints.
Dynamic Sql.
Scalar Expressions.
Get Diagnostics.
Miscellaneous.
B. Language Levels and Conformance.
Introduction.
Intermediate Sql.
Entry Sql.
SQL Flagger.
C. Sql/92 Vs Sql/89.
Introduction.
Extensions.
Incompatibilities.
Deprecated Features.
D. Some Outstanding Issues.
Introduction.
The Issues.
E. Persistent Stored Modules.
Introduction.
Overview.
Routines, Modules, and Schemas.
Type Precedence.
Subject Routine Determination.
SQL Control Statements.
Exception Handling.
External Routines.
Miscellaneous Topics.
F. An Overview of Sql3.
Introduction.
Data Definition and Manipulation.
Functions and Operators.
Integrity.
Security.
Transactions.
G. References and Bibliography. 0201964260T04062001
Preface
Several changes have occurred in the SQL standards world since the previous edition of this book was published. First of all, a major new component, the Call-Level Interface (SQL/CLI), was added to the standard in 1995. Second, another major new component, the Persistent Stored Modules feature (SQL/PSM), is currently under development (and indeed nearing completion); SQL/PSM is not yet part of the standard but is virtually certain to become so in the near future. Third, the original standard itself has been significantly changed and corrected through the publication of two Technical Corrigenda, one in 1994 and one in 1996. Taken together, these changes are more than sufficient to justify this new (fourth) edition. At the same time, I have taken the opportunity to extend and improve the text throughout in numerous ways, and in particular to correct a few errors. It is not an exaggeration to say that scarcely a sentence survives intact from the third edition.
Acknowledgments
Once again I must thank my coauthor Hugh Darwen for his invaluable contribution (especially in connection with the SQL/PSM and SQL3 appendixes). I would also like to thank Paul Cotton and Frank Pellow for their help with the material on SQL/CLI; Peter Pistor for pointing out an error in the treatment of foreign keys in the previous edition; Mike Sykes for assistance with questions regarding SQL's date and time support (especially in connection with time zones); and Mel Zimowski for assistance with questions regarding SQL's "global transaction" support. I am also indebted to Nelson Mattos, Frank Pellow, and Jeff Richey for their careful reviews of the manuscript.
Finally, I am (as always) deeply indebted to my wife, Lindy, for her support throughout this project; to my editor, Elydia Davis, for her usual sterling job; and to the staff at Addison-Wesley for their usual help and professionalism. Once again it has been a pleasure to work with them.
Healdsburg, California C. J. Date
1996
0201964260P04062001