structure query language which is used in the database.

Chapter 1

Introduction

The SQL Language

SQL is a tool for organizing, managing, and retrieving data stored by a computer database. The name “SQL” is an abbreviation for Structured Query Language. For historical reasons, SQL is usually pronounced “sequel,” but the alternate pronunciation “S.Q.L.” is also used. As the name implies, SQL is a computer language that you use to interact with a database. SQL works with one specific type of database, called a relational database.

Figure 1-1 shows how SQL works. The computer system in the figure has a database that stores important information. If the computer system is in a business, the database might store inventory, production, sales, or payroll data. On a personal computer, the database might store data about the checks you have written, lists of people and their phone numbers, or data extracted from a larger computer system. The computer program that controls the database is called a database management system, or DBMS.

Figure 1-1: Using SQL for database access

When you need to retrieve data from a database, you use the SQL language to make the request. The DBMS processes the SQL request, retrieves the requested data, and returns it to you. This process of requesting data from a database and receiving back the results is called a database q¿/ery—hence the name Structured Query Language.

The name Structured Query Language is somewhat of a misnomer. First of all, SQL is far more than a query tool, although that was its original purpose and retrieving data is still one of its most important functions. SQL is used to control all of the functions that a DBMS provides for its users, including:

  • Data definition. SQL lets a user define the structure and organization of the stored data and relationships among the stored data items.
  • Data retrieval. SQL allows a user or an application program to retrieve stored data from the database and use it.
  • Data manipulation. SQL allows a user or an application program to update the database by adding new data, removing old data, and modifying previously stored data.
  • Access control. SQL can be used to restrict a user’s ability to retrieve, add, and modify data, protecting stored data against unauthorized access.
  • Data sharing. SQL is used to coordinate data sharing by concurrent users, ensuring that they do not interfere with one another.
  • Data integrity. SQL defines integrity constraints in the database, protecting it from corruption due to inconsistent updates or system failures.

SQL is thus a comprehensive language for controlling and interacting with a database management system.

Second, SQL is not a complete computer language like COBOL, C, C++, or Java. SQL contains no IN Statement for testing conditions, and no coTo, Do, or FoR statements for program flow control. Instead, SQL is a database sublanguage, consisting of about forty statements specialized for database management tasks. These SQL statements can be embedded into another language, such as COBOL or C, to extend that language for use in database access. Alternatively, they can be explicitly sent to a database management system for processing, via a call-level interface from a language such as C, C++, or Java.

Finally, SQL is not a particularly structured language, especially when compared to highly structured languages such as C, Pascal, or Java. Instead, SQL statements resemble English sentences, complete with “noise words” that don’t add to the meaning of the statement but make it read more naturally. There are quite a few inconsistencies in the SQL language, and there are also some special rules to prevent you from constructing SQL statements that look perfectly legal but don’t make sense.

Despite the inaccuracy of its name, SQL has emerged as the standard language for using relational databases. SQL is both a powerful language and one that is relatively easy to learn. The quick tour of SQL in the next chapter will give you a good overview of the language and its capabilities.

The Role of SQL

SQL is not itself a database management system, nor is it a stand-alone product. You cannot go into a computer store and “buy SQL.” Instead, SQL is an integral part of a database management system, a language, and a tool for communicating with the DBMS. Figure 1-2 shows some of the components of a typical DBMS, and how SQL acts as the “glue” that links them together.

The database engine is the heart of the DBMS and is responsible for actually structuring, storing, and retrieving the data in the database. It accepts SQL requests from other DBMS components, such as a forms facility, report writer, or interactive query facility, from user-written application programs, and even from other computer systems.

  • SQL is an interactive query language. Users type SQL commands into an interactive SQL program to retrieve data and display it on the screen, providing a convenient, easy-to-use tool for ad hoc database queries.
  • SQL is a database programming language. Programmers embed SQL commands into their application programs to access the data in a database. Both user-written programs and database utility programs (such as report writers and data entry tools) use this technique for database access.
  • SQL is a database administration language. The database administrator responsible for managing a minicomputer or mainframe database uses SQL to define the database structure and control access to the stored data.
  • SQL is a client/server language. Personal computer programs use SQL to communicate over a network with database servers that store shared data. This client/server architecture has become very popular for enterprise-class applications.
  • SQL is an Internet data access language. Internet web servers that interact with corporate data and Internet application servers all use SQL as a standard language for accessing corporate databases.
  • SQL is a distributed database language. Distributed database management systems use SQL to help distribute data across many connected computer systems. The DBMS software on each system uses SQL to communicate with the other systems, sending requests for data access.
  • SQL is a database gateway language. In a computer network with a mix of different DBMS products, SQL is often used in a gateway that allows one brand of DBMS to communicate with another brand.

SQL has thus emerged as a useful, powerful tool for linking people, computer programs, and computer systems to the data stored in a relational database.

SQL Features and Benefits

SQL is both an easy-to-understand language and a comprehensive tool for managing data. Here are some of the major features of SQL and the market forces that have made it successful:

  • Vendor independence
  • Portability across computer systems
  • SQL standards
  • IBM endorsement (DB2)
  • Microsoft commitment (ODBC and ADO)
  • Relational foundation
  • High-level, English-like structure
  • Interactive, ad hoc queries
  • Programmatic database access
  • Multiple views of data
  • Complete database language
  • Dynamic data definition
  • Client/server architecture
  • Extensibility and object technology
  • Internet database access
  • Java integration (JDBC)

These are the reasons why SQL has emerged as the standard tool for managing data on personal computers, minicomputers, and mainframes. They are described in the sections that follow.

Vendor Independence

SQL is offered by all of the leading DBMS vendors, and no new database product over the last decade has been highly successful without SQL support. A SQL-based database and the programs that use it can be moved from one DBMS to another vendor’s DBMS with minimal conversion effort and little retraining of personnel. PC database tools, such as query tools, report writers, and application generators, work with many different brands of SQL databases. The vendor independence thus provided by SQL was one of the most important reasons for its early popularity and remains an important feature today.

Portability Across Computer Systems

SQL-based database products run on computer systems ranging from mainframes and midrange systems to personal computers, workstations, and even handheld devices.

They operate on stand-alone computer systems, in departmental local area networks, and in enterprise-wide or Internet-wide networks. SQL-based applications that begin on single-user systems can be moved to larger server systems as they grow. Data from corporate SQL-based databases can be extracted and downloaded into departmental or personal databases. Finally, economical personal computers can be used to prototype a SQL-based database application before moving it to an expensive multi-user system.

SQL Standards

An official standard for SQL was initially published by the American National Standards Institute (ANSI) and the International Standards Organization (ISO) in 1986, and was expanded in 1989 and again in 1992. SQL is also a U.S. Federal Information Processing Standard (FIPS), making it a key requirement for large government computer contracts. Over the years, other international, government, and vendor groups have pioneered the standardization of new SQL capabilities, such as call-level interfaces or object-based extensions. Many of these new initiatives have been incorporated into the ANSI/ISO standard over time. The evolving standards serve as an official stamp of approval for SQL and have speeded its market acceptance.

IBM Endorsement (DB2)

SQL was originally invented by IBM researchers and has since become a strategic product for IBM based on its flagship DB2 database. SQL support is available on all major IBM product families, from personal computers through midrange systems (AS/400 and RS/6000) to IBM mainframes running both the MVS and VM operating systems.

IBM’s initial work provided a clear signal of IBM’s direction for other database and system vendors to follow early in the development of SQL and relational databases. Later, IBM’s commitment and broad support speeded the market acceptance of SQL.

Microsoft Commitment (ODBC and ADO)

Microsoft has long considered database access a key part of its Windows personal computer software architecture. Both desktop and server versions of Windows provide standardized relational database access through Open Database Connectivity (ODBC), a SQL-based call-IeveIAPI. Leading Windows software applications (spreadsheets, word processors, databases, etc.) from Microsoft and other vendors support ODBC, and all leading SQL databases provide ODBC access. Microsoft has enhanced ODBC support with higher-level, more object-oriented database access layers as part of its Object Linking and Embedding technology (OLE DB), and more recently as part of Active/X (Active/X Data Objects, or ADO).

Relational Foundation

SQL is a language for relational databases, and it has become popular along with the relational database model. The tabular, row/column structure of a relational database is intuitive to users, keeping the SQL language simple and easy to understand. The relational model also has a strong theoretical foundation that has guided the evolution and implementation of relational databases. Riding a wave of acceptance brought about by the success of the relational model, SQL has become the database language for relational databases.

High-Level, English-Like Structure

SQL statements look like simple English sentences, making SQL easy to learn and understand. This is in part because SQL statements describe the data to be retrieved, rather than specifying how to find the data. Tables and columns in a SQL database can have long, descriptive names. As a result, most SQL statements “say what they mean” and can be read as clear, natural sentences.

Interactive, Ad Hoc Queries

SQL is an interactive query language that gives users ad hoc access to stored data. Using SQL interactively, a user can get answers even to complex questions in minutes or seconds, in sharp contrast to the days or weeks it would take for a programmer to write a custom report program. Because of SQL’s ad hoc query power, data is more accessible and can be used to help an organization make better, more informed decisions. SQL’s ad hoc query capability was an important advantage over nonrelational databases early in its evolution and more recently has continued as a key advantage over pure object-based databases.

Programmatic Database Access

SQL is also a database language used by programmers to write applications that access a database. The same SQL statements are used for both interactive and programmatic access, so the database access parts of a program can be tested first with interactive SQL and then embedded into the program. In contrast, traditional databases provided one set of tools for programmatic access and a separate query facility for ad hoc requests, without any synergy between the two modes of access.

Multiple Views of Data

Using SQL, the creator of a database can give different users of the database different views of its structure and contents. For example, the database can be constructed so that each user sees data for only their department or sales region. In addition, data from several different parts of the database can be combined and presented to the user as a simple row/column table. SQL views can thus be used to enhance the security of a database and tailor it to the particular needs of individual users.

Complete Database Language

SQL was first developed as an ad hoc query language, but its powers now go far beyond data retrieval. SQL provides a complete, consistent language for creating a database, managing its security, updating its contents, retrieving data, and sharing data among many concurrent users. SQL concepts that are learned in one part of the language can be applied to other SQL commands, making users more productive.

Dynamic Data Definition

Using SQL, the structure of a database can be changed and expanded dynamically, even while users are accessing database contents. This is a major advance over static data definition languages, which prevented access to the database while its structure was being changed. SQL thus provides maximum flexibility, allowing a database to adapt to changing requirements while on-line applications continue uninterrupted.

Client/Server Architecture

SQL is a natural vehicle for implementing applications using a distributed, client/server architecture. In this role, SQL serves as the link between “front-end” computer systems optimized for user interaction and “back-end” systems specialized for database management, allowing each system to do what it does best. SQL also allows personal computers to function as front-ends to network servers or to larger minicomputer and mainframe databases, providing access to corporate data from personal computer applications.

Extensibility and Object Technology

The major challenge to SQL’s continued dominance as a database standard has come from the emergence of object-based programming, and the introduction of object-based databases as an extension of the broad market trend toward object-based technology. SQL-based database vendors have responded to this challenge by slowly expanding and enhancing SQL to include object features. These “object/relational” databases, which continue to be based on SQL, have emerged as a more popular alternative to “pure object” databases and may insure SQL’s continuing dominance for the next decade.

Internet Database Access

With the exploding popularity of the Internet and the World Wide Web, and their standards-based foundation, SQL found a new role in the late 1990s as an Internet data access standard. Early in the development of the Web, developers needed a way to retrieve and present database information on web pages and used SQL as a common language for database gateways. More recently, the emergence of three-tiered Internet architectures with distinct thin client, application server and database server layers, have established SQL as the standard link between the application and database tiers.

Java Integration (JDBC)

One of the major new areas of SQL development is the integration of SQL with Java. Seeing the need to link the Java language to existing relational databases, Sun

Microsystems (the creator of Java) introduced Java Data Base Connectivity (JDBC), a standard API that allows Java programs to use SQL for database access. Many of the leading database vendors have also announced or implemented Java support within their database systems, allowing Java to be used as a language for stored procedures and business logic within the database itself. This trend toward integration between Java and SQL will insure the continued importance of SQL in the new era of Java-based programming.

Chapter 2

A Quick Tour of SQL

Overview

Before diving into the details of SQL, it’s a good idea to develop an overall perspective on the language and how it works. This chapter contains a quick tour of SQL that illustrates its major features and functions. The goal of the quick tour is not to make you proficient in writing SQL statements; that is the goal of Part II of this book. Rather, by the time you’ve finished this chapter, you will have a basic familiarity with the SQL language and an overview of its capabilities.

A Simple Database

The examples in the quick tour are based on a simple relational database for a small distribution company. The database, shown in Figure 2-1, stores the information needed to implement a small order processing application. Specifically, it stores the following information:

Figure 2-1: A simple relational database.

  • the customers who buy the company’s products,
  • the orders placed by those customers,
  • the salespeople who sell the products to customers, and
  • the sales offices where those salespeople work.

This database, like most others, is a model of the “real world.” The data stored in the database represents real entities—customers, orders, salespeople, and offices. There is a separate table of data for each different kind of entity. Database requests that you make using the SQL language parallel real-world activities, as customers place, cancel, and change orders, as you hire and fire salespeople, and so on. Let’s see how you can use SQL to manipulate data.

Retrieving Data

First, let’s list the sales offices, showing the city where each one is located and its year- to-date sales. The SQL statement that retrieves data from the database is called SELECT. This SQL statement retrieves the data you want:

SELECT CITY, OFFICE, FROM OFFICESSALES
CITY          OFFICESALES
Denver            22$186,042.00
New York          11$692,637.00
Chicago           12$735,042.00
Atlanta           13$367,911.00
Los Angeles       21$835,915.00

The sELECI statement asks for three pieces of data—the city, the office number, and the sales—for each office. It also specifies that the data comes from the oFFICEs table, which stores data about sales offices. The results of the query appear, in tabular form, immediately after the request.

The sELECT statement is used for all SQL queries. For example, here is a query that lists the names and year-to-date sales for each salesperson in the database. It also shows the quota (sales target) and the office number where each person works. In this case, the data comes from sAIuESRE P S table:

The requested data (including the calculated difference between sales and quota for each salesperson) once again appears in a row/column table. Perhaps you would like to focus on the salespeople whose sales are less than their quotas. SQL lets you retrieve that kind of selective information very easily, by adding a mathematical comparison to the previous request:

The same technique can be used to list large orders in the database and find out which customer placed the order, what product was ordered, and in what quantity. You can also ask SQL to sort the orders based on the order amount:

Summarizing Data

SQL not only retrieves data from the database, but it can also be used to summarize the database contents as well. What’s the average size of an order in the database? This request asks SQL to look at all the orders and find the average amount:

SELECT AVG(AMOUNT) FROM ORDERS

AVG(AMOUNT)

$8,256.37

You could also ask for the average amount of all the orders placed by a particular customer:

SELECT AVG(AMOUNT) FROM ORDERS

WHERE CUST = 2103 AVG(AMOUNT)

$8,895.50

Finally, let’s find out the total amount of the orders placed by each customer. To do this, you can ask SQL to group the orders together by customer number and then total the orders for each customer:

Adding Data to the Database

SQL is also used to add new data to the database. For example, suppose you just opened a new Western region sales office in Dallas, with target sales of $275,000. Here’s the INsERI statement that adds the new office to the database, as office number 23:

INSERT INTO OFFICES (CITY, REGION, TARGET, SALES, OFFICE) VALUES (‘Dallas’, ‘Western’, 275000.00, 0.00, 23)

1 row inserted.

Similarly, if Mary Jones (employee number 109) signs up a new customer, Acme Industries, thÍS INSERT Statement adds the customer to the database as customer number 2125 with a $25,000 credit limit:

INSERT INTO CUSTOMERS (COMPANY, CUST_REP, CUST NUM, CREDIT LÍMIT) VALUES (‘Acme Industries’, 109, 2125, 25000.00)

1 row inserted.

Deleting Data

Just as the SQL INSERT Statement adds new data to the database, the SQL DEIuETE statement removes data from the database. If Acme Industries decides a few days later to switch to a competitor, you can delete them from the database with this statement:

DELETE FROM CUSTOMERS

WHERE COMPANY = ‘Acme Industries’

  1. row deleted.

And if you decide to terminate all salespeople whose sales are less than their quotas, you can remove them from the database with thÍS DELETE Statement:

DELETE FROM SALESREPS WHERE SALES < QT<R

  • rows deleted.

Updating the Database

The SQL language is also used to modify data that is already stored in the database. For example, to increase the credit limit for First Corp. to $75,000, you would use the SQL UPDATE Statement:

UPDATE CUSTOMERS

SET CREDIT LÍMIT = 75000.00 WHERE COMPANY = ‘First Corp.’

1 row updated.

The vpDATE Statement can also make many changes in the database at once. For

example, this UPDATE Statement raises the quota for all salespeople by $15,000:

UPDATE SALESREPS

SET QUOTA = QUOTA + 15000.00

8 rows updated.

Protecting Data

An important role of a database is to protect the stored data from access by unauthorized users. For example, suppose your assistant, named Mary, was not previously authorized to insert data about new customers into the database. This SQL statement grants her that permission:

GRANT INSERT

ON CUSTOMERS TO MARY

Privilege granted.

Similarly, the following SQL statement gives Mary permission to update data about customers and to retrieve customer data with the sEŁECT Statement:

GRANT UPDATE, SELECT ON CUSTOMERS

TO MARY

Privilege granted.

If Mary is no longer allowed to add new customers to the database, this REVOKE statement will disallow it:

REVOKE INSERT

ON CUSTOMERS FROM MARY

Privilege revoked.

Similarly, thİS REVOKE Statement will revoke all of Mary’s privileges to access customer data in any way:

REVOKE ALL

ON CUSTOMERS FROM MARY

Privilege revoked.

Creating a Database

Before you can store data in a database, you must first define the structure of the data. Suppose you want to expand the sample database by adding a table of data about the products sold by your company. For each product, the data to be stored includes:

  • a three-character manufacturer ID code,
  • a five-character product ID code,
  • a description of up to thirty characters,
  • the price of the product, and
  • the quantity currently on hand.

This SQL CREATE TABLE Statement defines a new table to store the products data:

CREATE TABLE PRODUCTS (MFR ID CHAR(3), PRODUCT ID CHAR(5),

DESCRIPTION VARCHAR(20), PRICE MONEY,

QTY_ON_HAND INTEGER)

Table created.

Although more cryptic than the previous SQL statements, the cREATE TABLE Statement is still fairly straightforward. It assigns the name PRoDUCTS to the new table and specifies the name and type of data stored in each of its five columns.

Once the table has been created, you can fill it with data. Here’s an INsERT Statement for a new shipment of 250 size 7 widgets (product ACI-41007), which cost $225.00 apiece:

INSERT INTO PRODUCTS (MFR ID, PRODUCT ID, DESCRIPTION, PRICE, QTY_ON HAND)

VALUES (‘ACI’, ‘41007’, ‘Size 7 Widget’, 225.00, 250)

1 row inserted.

Finally, if you discover later that you no longer need to store the products data in the database, you can erase the table (and all of the data it contains) with the DRoP TABLE statement:

DROP TABLE PRODUCTS

Table dropped.

Summary

This quick tour of SQL showed you what SQL can do and illustrated the style of the SQL language, using eight of the most commonly used SQL statements. To summarize:

• SQL is used to retrieve data from the database, using the sELEcT Statement. You can retrieve all or part of the stored data, sort it, and ask SQL to summarize the data, using totals and averages.

• SQL is used to update the database, by adding new data with the INSERT Statement, deleting data with the DELETE Statement, and modifying existing data with the vpDAIE statement.

• SQL is used to control access to the database, by granting and revoking specific privileges for specific users with the cRANI and REVOKE Statements.

• SQL is used to create the database by defining the structure of new tables and dropping tables when they are no longer needed, using the cREAIE and DRoP statements.

Chapter 3

SQL In Perspective

SQL is both a de facto and an official standard language for database management. What does it mean for SQL to be a standard? What role does SQL play as a database language? How did SQL become a standard, and what impact is the SQL standard having on personal computers, local area networks, minicomputers, and mainframes? To answer these questions, this chapter traces the history of SQL and describes its current role in the computer market.

SQL and Database Management

One of the major tasks of a computer system is to store and manage data. To handle this task, specialized computer programs known as database management systems began to appear in the late 1960s and early 1970s. A database management system, or DBMS, helped computer users to organize and structure their data and allowed the computer system to play a more active role in managing the data. Although database management systems were first developed on large mainframe systems, their popularity has spread to minicomputers, personal computers, workstations, and specialized server computers.

Database management also plays a key role in the explosion of computer networking and the Internet. Early database systems ran on laarge, monolithic computer systems, where the data, the database management software, and the user or application program accessing the database all operated on the same system. The 1980s and 1990s saw the explosion of a new, client/server model for database access, in which a user on a personal computer or an application program accessed a database on a separate computer system using a network. In the late 1990s, the increasing popularity of the Internet and the World Wide Web intertwined the worlds of networking and data management even further. Now users require little more than a web browser to access and interact with databases, not only within their own organizations, but around the world.

Today, database management is very big business. Independent software companies and computer vendors ship billions of dollars worth of database management products every year. Computer industry experts say that mainframe and minicomputer database products each account for about 10 to 20 percent of the database market, and personal computer and server-based database products account for 50 percent or more. Database servers are one of the fastest-growing segments of the computer systems market, driven by database installations on Unix and Windows NT-based servers. Database management thus touches every segment of the computer market.

Since the late 1980s a specific type of DBMS, called a relational database management system (RDBMS), has become so popular that it is the standard database form. Relational databases organize data in a simple, tabular form and provide many advantages over earlier types of databases. SQL is specifically a relational database language used to work with relational databases.

A Brief History of SQL

The history of the SQL language is intimately intertwined with the development of relational databases. Table 3-1 shows some of the milestones in its 30-year history. The relational database concept was originally developed by Dr. E.F. “Ted” Codd, an IBM researcher. In June 1970 Dr. Codd published an article entitled “A Relational Model of Data for Large Shared Data Banks” that outlined a mathematical theory of how data could be stored and manipulated using a tabular structure. Relational databases and SQL trace their origins to this article, which appeared in the Communications of the Association for Computing Machinery.

Table 3-1: Milestones in the Development of SQL

Date     Event

1970Codd defines relational database model
1974IBM’s System/R project begins
1974First article describing the SEQUEL language
1978System/R customer tests
1979Oracle introduces first commercial RDBMS
1981Relational Technology introduces Ingres
1981IBM announces SQL/DS
1982ANSI forms SQL standards committee
1983IBM announces DB2
1986ANSI SQL1 standard ratified
1986Sybase introduces RDBMS for transaction processing
1987ISO SQL1 standard ratified
1988Ashton-Tate and Microsoft announce SQL Server for OS/2
1989First TPC benchmark (TPC-A) published
1990TPC-B benchmark published
1991SQL Access Group database access specification published
1992Microsoft publishes ODBC specification
1992ANSI SQL2 standard ratified
1992TPC-C (OLTP) benchmark published
1993First shipment of specialized SQL data warehousing systems
1993First shipment of ODBC products
1994TPC-D (decision support) benchmark published
1994Commercial shipment of parallel database server technology
1996Publication of standard API for OLAP database access and OLAP benchmark
1997IBM DB2 UDB unifies DB2 architecture across IBM and other vendor platforms
1997Major DBMS vendors announce Java integration strategies
1998Microsoft SQL Server 7 provides enterprise-level database support for Windows NT
1998Oracle 8i provides database/Internet integration and moves away from
 client/server model

The Early Years

Codd’s article triggered a flurry of relational database research, including a major research project within IBM. The goal of the project, called System/R, was to prove the workability of the relational concept and to provide some experience in actually implementing a relational DBMS. Work on System/R began in the mid-1970s at IBM’s Santa Teresa laboratories in San Jose, California.

In 1974 and 1975 the first phase of the System/R project produced a minimal prototype of a relational DBMS. In addition to the DBMS itself, the System/R project included work on database query languages. One of these languages was called SEQUEL, an acronym for Structured English Query Language. In 1976 and 1977 the System/R research prototype was rewritten from scratch. The new implementation supported multi-table queries and allowed several users to share access to the data.

The System/R implementation was distributed to a number of IBM customer sites for evaluation in 1978 and 1979. These early customer sites provided some actual user experience with System/R and its database language, which, for legal reasons, had been renamed SQL, or Structured Query Language. Despite the name change, the SEQUEL pronunciation remained and continues to this day. In 1979 the System/R research project came to an end, with IBM concluding that relational databases were not only feasible, but could be the basis for a useful commercial product.

Early Relational Products

The System/R project and its SQL database language were well-chronicled in technical journals during the 1970s. Seminars on database technology featured debates on the merits of the new and “heretical” relational model. By 1976 it was apparent that IBM was becoming enthusiastic about relational database technology and that it was making a major commitment to the SQL language.

The publicity about System/R attracted the attention of a group of engineers in Menlo Park, California, who decided that IBM’s research foreshadowed a commercial market for relational databases. In 1977 they formed a company, Relational Software, Inc., to build a relational DBMS based on SQL. The product, named Oracle, shipped in 1979 and became the first commercially available relational DBMS. Oracle beat IBM’s first product to market by a full two years and ran on Digital’s VAX minicomputers, which were less expensive than IBM mainframes. Today the company, renamed Oracle Corporation, is a leading vendor of relational database management systems, with annual sales of many billions of dollars.

Professors at the University of California’s Berkeley computer laboratories were also researching relational databases in the mid-1970s. Like the IBM research team, they built a prototype of a relational DBMS and called their system Ingres. The Ingres project included a query language named QUEL that, although more “structured” than SQL, was less English-like. Many of today’s database experts trace their involvement with relational.

databases back to the Berkeley Ingres project, including the founders of Sybase and many of the object-oriented database startup companies.

In 1980 several professors left Berkeley and founded Relational Technology, Inc., to build a commercial version of Ingres, which was announced in 1981. Ingres and Oracle quickly became arch-rivals, but their rivalry helped to call attention to relational database technology in this early stage. Despite its technical superiority in many areas, Ingres became a clear second-place player in the market, competing against the SQL-based capabilities (and the aggressive marketing and sales strategies) of Oracle. The original QUEL query language was effectively replaced by SQL in 1986, a testimony to the market power of the SQL standard. By the mid-1990s, the Ingres technology had been sold to Computer Associates, a leading mainframe software vendor.

IBM Products

While Oracle and Ingres raced to become commercial products, IBM’s System/R project had also turned into an effort to build a commercial product, named SQL/Data System (SQL/DS). IBM announced SQL/DS in 1981 and began shipping the product in 1982. In 1983 IBM announced a version of SQL/DS for VM/CMS, an operating system that is frequently used on IBM mainframes in corporate “information center” applications.

In 1983 IBM also introduced Database 2 (DB2), another relational DBMS for its mainframe systems. DB2 operated under IBM’s MVS operating system, the workhorse operating system used in large mainframe data centers. The first release of DB2 began shipping in 1985, and IBM officials hailed it as a strategic piece of IBM software technology. DB2 has since become IBM’s flagship relational DBMS, and with IBM’s weight behind it, DB2’s SQL language became the de facto standard database language. DB2 technology has now migrated across all IBM product lines, from personal computers to network servers to mainframes. In 1997, IBM took the DB2 cross-platform strategy even farther, by announcing DB2 versions for computer systems made by Sun Microsystems, Hewlett-Packard, and other IBM hardware competitors.

Commercial Acceptance

During the first half of the 1980s, the relational database vendors struggled for commercial acceptance of their products. The relational products had several disadvantages when compared to the traditional database architectures. The performance of relational databases was seriously inferior to that of traditional databases. Except for the IBM products, the relational databases came from small “upstart” vendors. And, except for the IBM products, the relational databases tended to run on minicomputers rather than on IBM mainframes.

The relational products did have one major advantage, however. Their relational query languages (SQL, QUEL, and others) allowed users to pose ad hoc queries to the database— and get immediate answers—without writing programs. As a result, relational databases began slowly turning up in information center applications as decision-support tools. By May 1985 Oracle proudly claimed to have “over 1,000” installations. Ingres was installed in a comparable number of sites. DB2 and SQL/DS were also being slowly accepted and counted their combined installations at slightly over 1,000 sites.

During the last half of the 1980s, SQL and relational databases were rapidly accepted as the database technology of the future. The performance of the relational database products improved dramatically. Ingres and Oracle, in particular, leapfrogged with each new version claiming superiority over the competitor and two or three times the performance of the previous release. Improvements in the processing power of the underlying computer hardware also helped to boost performance.

Market forces also boosted the popularity of SQL in the late 1980s. IBM stepped up its evangelism of SQL, positioning DB2 as the data management solution for the 1990s. Publication of the ANSI/ISO standard for SQL in 1986 gave SQL “official” status as a

standard. SQL also emerged as a standard on Unix-based computer systems, whose popularity accelerated in the 1980s. As personal computers became more powerful and were linked in local area networks, they needed more sophisticated database management. PC database vendors embraced SQL as the solution to these needs, and minicomputer database vendors moved “down market” to compete in the emerging PC local area network market. Through the early 1990s, steadily improving SQL implementations and dramatic improvements in processor speeds made SQL a practical solution for transaction processing applications. Finally, SQL became a key part of the client/server architecture that used PCs, local area networks, and network servers to build much lower cost information processing systems.

SQL’s supremacy in the database world has not gone unchallenged. By the early 1990s, object-oriented programming had emerged as the method of choice for applications development, especially for personal computers and their graphical user interfaces. The object model, with its model of objects, classes, methods, and inheritance, did not provide an ideal fit with relational model of tables, rows, and columns of data. A new generation of venture capital-backed “object database” companies sprang up, hoping to make relational databases and their vendors obsolete, just as SQL had done to the earlier, nonrelational vendors. However, SQL and the relational model have more than withstood the challenge to date. Annual revenues for object-oriented databases are measured in the hundreds of millions of dollars, at best, while SQL and relational database systems, tools, and services produce tens of billions of dollars.

As SQL grew to address an ever-wider variety of data management tasks, the “one-size- fits-all” approach showed serious strain. By the late 1990s, “database management” was no longer a monolithic market. Specialized database systems sprang up to support different market needs. One of the fastest-growing segments was “data warehousing,” where databases were used to search through huge amounts of data to discover underlying trends and patterns. A second major trend was the incorporation of new data types (such as multimedia data) and object-oriented principles into SQL. A third important segment was “mobile databases” for portable personal computers that could operate when sometimes connected to, and sometimes disconnected from, a centralized database system. Despite the emergence of database market subsegments, SQL has remained a common denominator across them all. As the computer industry prepares for the next century, SQL’s dominance as the database standard is as strong as ever.

SQL Standards

One of the most important developments in the market acceptance of SQL is the emergence of SQL standards. References to “the SQL standard” usually mean the official standard adopted by the American National Standards Institute (ANSI) and the International Standards Organization (ISO). However, there are other important SQL standards, including the de facto standard SQL defined by IBM’s DB2 product family.

The ANSI/ISO Standards

Work on the official SQL standard began in 1982, when ANSI charged its X3H2 committee with defining a standard relational database language. At first the committee debated the merits of various proposed database languages. However, as IBM’s commitment to SQL increased and SQL emerged as a de facto standard in the market, the committee selected SQL as their relational database language and turned their attention to standardizing it.

The resulting ANSI standard for SQL is largely based on DB2 SQL, although it contains some major differences from DB2. After several revisions, the standard was officially adopted as ANSI standard X3.135 in 1986, and as an ISO standard in 1987. The ANSI/ISO standard has since been adopted as a Federal Information Processing Standard (FIPS) by the U.S. government. This standard, slightly revised and expanded in 1989, is usually called the “SQL-89” or “SQL1” standard.

Many of the ANSI and ISO standards committee members were representatives from database vendors who had existing SQL products, each implementing a slightly different SQL dialect. Like dialects of human languages, the SQL dialects were generally very similar to one another but were incompatible in their details. In many areas the committee simply sidestepped these differences by omitting some parts of the language from the standard and specifying others as “implementor-defined.” These decisions allowed existing SQL implementations to claim broad adherence to the resulting ANSI/ISO standard but made the standard relatively weak.

To address the holes in the original standard, the ANSI committee continued its work, and drafts for a new more rigorous SQL2 standard were circulated. Unlike the 1989 standard, the SQL2 drafts specified features considerably beyond those found in current commercial SQL products. Even more far-reaching changes were proposed for a follow- on SQL3 standard. In addition, the draft standards attempted to officially standardize parts of the SQL language where different “proprietary standards” had long since been set by the various major DBMS brands. As a result, the proposed SQL2 and SQL3 standards were a good deal more controversial than the initial SQL standard. The SQL2 standard weaved its way through the ANSI approval process and was finally approved in October, 1992. While the original 1986 standard took less than 100 pages, the SQL2 standard (officially called “SQL-92”) takes nearly 600 pages.

The SQL2 standards committee acknowledged the large step from SQL1 to SQL2 by explicitly creating three levels of SQL2 standards compliance. The lowest compliance level (“Entry-Level”) requires only minimal additional capability beyond the SQL-89 standard. The middle compliance level (“Intermediate-Level”) was created as an achievable major step beyond SQL-89, but one that avoids the most complex and most system-dependent and DBMS brand-dependent issues. The third compliance level (“Full”) requires a full implementation of all SQL2 capabilities. Throughout the 600 pages of the standard, each description of each feature includes a definition of the specific aspects of that feature which must be supported in order to achieve Entry, Intermediate, or Full compliance.

Despite the existence of a SQL2 standard, no commercial SQL product available today implements all of its features, and no two commercial SQL products support exactly the same SQL dialect. Moreover, as database vendors introduce new capabilities, they are expanding their SQL dialects and moving them even further apart. The central core of the SQL language has become fairly standardized, however. Where it could be done without hurting existing customers or features, vendors have brought their products into conformance with the SQL-89 standard, and the same will slowly happen with SQL2. In the meantime, work continues on standards beyond SQL2. The “SQL3” effort effectively fragmented into separate standardization efforts and focused on different extensions to SQL. Some of these, such as stored procedure capabilities, are already found in many commercial SQL products and pose the same standardization challenges faced by SQL2. Others, such as proposed object extensions to SQL, are not yet widely available or fully implemented, but have generated a great deal of controversy. With most vendors far from fully implementing SQL2 capabilities, and with the diversity of SQL extensions now available in commercial products, work on SQL3 has taken on less commercial importance.

The “real” SQL standard, of course, is the SQL implemented in products that are broadly accepted by the marketplace. For the most part, programmers and users tend to stick with those parts of the language that are fairly similar across a broad range of products. The innovation of the database vendors continues to drive the invention of new SQL capabilities; some products remain years later only for backward compatibility, and some find commercial success and move into the mainstream.

Other SQL Standards

Although it is the most widely recognized, the ANSI/ISO standard is not the only standard for SQL. X/OPEN, a European vendor group, has also adopted SQL as part of its suite of standards for a “portable application environment” based on Unix. The X/OPEN

standards play a major role in the European computer market, where portability among computer systems from different vendors is a key concern. Unfortunately, the X/OPEN standard differs from the ANSI/ISO standard in several areas.

IBM also included SQL in the specification of its bold Systems Application Architecture (SAA) blueprint, promising that all of its SQL products would eventually move to this SAA SQL dialect. Although SAA failed to achieve its promise of unifying the IBM product line, the momentum toward a unified IBM SQL continued. With its mainframe DB2 database as the flagship, IBM introduced DB2 implementations for OS/2, its personal computer operating system, and for its RS/6000 line of Unix-based workstations and servers. By 1997, IBM had moved DB2 beyond its own product line and shipped versions of DB2- Universal Database for systems made by rival manufacturers Sun Microsystems,

Hewlett-Packard, and Silicon Graphics, and for Windows NT. With IBM’s historical leadership in relational database technology, the SQL dialect supported by DB2 version is a very powerful de facto standard.

ODBC and the SQL Access Group

An important area of database technology not addressed by official standards is database i/?teroperab//ity—the methods by which data can be exchanged among different databases, usually over a network. In 1989, a group of vendors formed the SQL Access Group to address this problem. The resulting SQL Access Group specification for Remote Database Access (RDA) was published in 1991. Unfortunately, the RDA

specification is closely tied to the OSI protocols, which have not been widely accepted, so it has had little impact. Transparent interoperability among different vendors’ databases remains an elusive goal.

A second standard from the SQL Access Group has had far more market impact. At Microsoft’s urging and insistence, SQL Access Group expanded its focus to include a call-level interface for SQL. Based on a draft from Microsoft, the resulting Call-Level Interface (CLI) specification was published in 1992. Microsoft’s own Open Database Connectivity (ODBC) specification, based on the CLI standard, was published the same year. With the market power of Microsoft behind it, and the “open standards” blessing of SQL Access Group, ODBC has emerged as the de facto standard interface for PC access to SQL databases. Apple and Microsoft announced an agreement to support ODBC on Macintosh and Windows in the spring of 1993, giving ODBC “standard” status in both popular graphical user interface environments. ODBC implementations for Unix- based systems soon followed.

Today, ODBC is in its fourth major revision as a cross-platform database access standard. ODBC support is available for all major DBMS brands. Most packaged application programs that have database access as an important part of their capabilities support ODBC, range from multi-million-dollar enterprise class applications like Enterprise Resource Planning (ERP) and Supply Chain Management (SCM) to PC applications such as spreadsheets, query tools, and reporting programs. Microsoft’s focus has moved beyond ODBC to higher-level interfaces (such as OLE/DB) and more recently to ADO (Active Data Objects), but these new interfaces are layered on top of ODBC for relational database access, and it remains a key cross-platform database access technology.

The Portability Myth

The existence of published SQL standards has spawned quite a few exaggerated claims about SQL and applications portability. Diagrams such as the one in Figure 3-1 are frequently drawn to show how an application using SQL can work interchangeably with any SQL-based database management system. In fact, the holes in the SQL-89 standard and the current differences between SQL dialects are significant enough that an application must always be modified when moved from one SQL database to another.

These differences, many of which were eliminated by the SQL2 standard but have not yet implemented in commercial products, include:

Figure 3-1: The SQL portability myth

  • Error codes. The SQL-89 standard does not specify the error codes to be returned when SQL detects an error, and all of the commercial implementations use their own set of error codes. The SQL2 standard specifies standard error codes.
  • Data types. The SQL-89 standard defines a minimal set of data types, but it omits some of the most popular and useful types, such as variable-length character strings, dates and times, and money data. The SQL2 standard addresses these, but not “new” data types such as graphics and multimedia objects.
  • System tables. The SQL-89 standard is silent about the system tables that provide information regarding the structure of the database itself. Each vendor has its own structure for these tables, and even IBM’s four SQL implementations differ from one another. The tables are standardized in SQL2, but only at the higher levels of compliance, which are not yet provided by most vendors.
  • Interactive SQL. The standard specifies only the programmatic SQL used by an application program, not interactive SQL. For example, the sErECI statement used to query the database in interactive SQL is absent from the SQL-89 standard. Again, the SQL2 standard addressed this issue, but long after all of the major DBMS vendors had well-established interactive SQL capabilities.
  • Programmatic interface. The original standard specifies an abstract technique for using SQL from within an applications program written in COBOL, C, FORTRAN, and other programming languages. No commercial SQL product uses this technique, and there is considerable variation in the actual programmatic interfaces used. The SQL2 standard specifies an embedded SQL interface for popular programming languages but not a call-level interface.
  • Dynamic SQL. The SQL-89 standard does not include the features required to develop general-purpose database front-ends, such as query tools and report writers. These features, known as dynamic SQL, are found in virtually all SQL database systems, but they vary significantly from product to product. SQL2 includes a standard for dynamic SQL, but with hundreds of thousands of existing applications dependent on backward compatibility, DBMS vendors have not implemented it.
  • Semantic differences. Because the standards specify certain details as “implementor- defined,” it’s possible to run the same query against two different conforming SQL implementations and produce two different sets of query results. These differences occur in the handling of Nina values, column functions, and duplicate row elimination.
  • Collating sequences. The SQL-89 standard does not address the collating (sorting) sequence of characters stored in the database. The results of a sorted query will be different if the query is run on a personal computer (with ASCII characters) and a mainframe (with EBCDIC characters). The SQL2 standard includes an elaborate specification for how a program or a user can request a specific collating sequence, but it is an advanced-level feature that is not typically supported in commercial products.
  • Database structure. The SQL-89 standard specifies the SQL language to be used once a particular database has been opened and is ready for processing. The details of database naming and how the initial connection to the database is established vary widely and are not portable. The SQL2 standard creates more uniformity but cannot completely mask these details.

Despite these differences, commercial database tools boasting portability across several different brands of SQL databases began to emerge in the early 1990s. In every case, however, the tools require a special adapter for each supported DBMS, which generates the appropriate SQL dialect, handles data type conversion, translates error codes, and so on. Transparent portability across different DBMS brands based on standard SQL is the major goal of SQL2 and ODBC, and significant progress has been made. Today, virtually all programs that support multiple databases include specific “drivers” for communicating with each of the major DBMS brands, and usually include an ODBC driver for accessing the others.

SQL and Networking

The dramatic growth of computer networking over the past decade has had a major impact on database management and given SQL a new prominence. As networks became more common, applications that traditionally ran on a central minicomputer or mainframe moved to local area networks of desktop workstations and servers. In these networks SQL plays a crucial role as the link between an application running on a desktop workstation with a graphical user interface and the DBMS that manages shared data on a cost-effective server. More recently, the exploding popularity of the Internet and the World Wide Web has reinforced the network role for SQL. In the emerging “three-tier” Internet architecture, SQL once again provides the link between the application logic (now running in the “middle tier,” on an application server or web server) and the database residing in the “back-end” tier. The next few sections in this chapter discuss the evolution of database network architectures and the role of SQL in each one.

Centralized Architecture

The traditional database architecture used by DB2, SQL/DS, and the original minicomputer databases such as Oracle and Ingres is shown in Figure 3-2. In this architecture the DBMS and the physical data both reside on a central minicomputer or mainframe system, along with the application program that accepts input from the user’s terminal and displays data on the user’s screen. The application program communicates with the DBMS using SQL.

Figure 3-2: Database management in a centralized architecture

Suppose that the user types a query that requires a sequential search of a database, such as a request to find the average amount of merchandise of all orders. The DBMS receives the query, scans through the database fetching each record of data from the disk, calculates the average, and displays the result on the terminal screen. Both the application processing and the database processing occur on the central computer, so execution of this type of query (and in fact, all kinds of queries) is very efficient.

The disadvantage of the centralized architecture is scalability. As more and more users are added, each of them adds application processing workload to the system. Because the system is shared, each user experiences degraded performance as the system becomes more heavily loaded.

File Server Architecture

The introduction of personal computers and local area networks led to the development of the file server architecture, shown in Figure 3-3. In this architecture, an application running on a personal computer can transparently access data located on a file server, which stores shared files. When a PC application requests data from a shared file, the networking software automatically retrieves the requested block of the file from the server. Early PC databases, such as dBASE and later Microsoft’s Access, supported this file server approach, with each personal computer running its own copy of the DBMS software.

For typical queries that retrieve only one row or a few rows from the database, this architecture provides excellent performance, because each user has the full power of a personal computer running its own copy of the DBMS. However, consider the query made in the previous example. Because the query requires a sequential scan of the database, the DBMS repeatedly requests blocks of data from the database, which is physically located across the network on the server. Eventually every block of the file will be requested and sent across the network. Obviously this architecture produces very heavy network traffic and slow performance for queries of this type.

Client/Server Architecture

Figure 3-4 shows the next stage of network database evolution—the client/server database architecture. In this scheme, personal computers are combined in a local area network with a database server that stores shared databases. The functions of the DBMS are split into two parts. Database “front-ends,” such as interactive query tools, report writers, and application programs, run on the personal computer. The back-end database engine that stores and manages the data runs on the server. As the client/server architecture grew in popularity during the 1990s, SQL became the standard database language for communication between the front-end tools and the back-end engine in this architecture.

Consider once more the query requesting the average order size. In the client/server architecture, the query travels across the network to the database server as a SQL

request. The database engine on the server processes the request and scans the database, which also resides on the server. When the result is calculated, the database engine sends it back across the network as a single reply to the initial request, and the front-end application displays it on the PC screen.

The client/server architecture reduces the network traffic and splits the database workload. User-intensive functions, such as handling input and displaying data, are concentrated on the user’s PC. Data-intensive functions, such as file I/O and query processing, are concentrated in the database server. Most importantly, the SQL language provides a well-defined interface between the front-end and back-end systems, communicating database access requests in an efficient manner.

By the mid-1990s, these advantages made the client/server architecture the most popular scheme for implementing new applications. All of the most popular DBMS products— Oracle, Informix, Sybase, SQL Server, DB2, and many more—offered client/server capability. The database industry grew to include many companies offering tools for building client/server applications. Some of these came from the database companies themselves; others came from independent companies.

Like all architectures, client/server had its disadvantages. The most serious of these was the problem of managing the applications software that was now distributed across hundreds or thousands of desktop PCs instead of running on a central minicomputer or mainframe. To update an application program in a large company, the information systems department had to update thousands of PC systems, one at a time. The situation was even worse if changes to the application program had to be synchronized with changes to other applications, or to the DBMS system itself. In addition, with personal computers on user’s desks, users tended to add new personal software of their own or to change the configuration of their systems. Such changes often disrupted existing applications, adding to the support burden. Companies developed strategies to deal with these issues, but by the late 1990s there was growing concern about the manageability of client/server applications on large, distributed PC networks.

Multi-Tier Architecture

With the emergence of the Internet and especially the World Wide Web, network database architecture has taken another step. At first, the Web was used to access (“browse”) static documents and evolved outside of the database world. But as the use of web browsers became widespread, it wasn’t long before companies thought about using them as a simple way to provide access to corporate databases as well. For example, suppose a company starts using the Web to provide product information to its customers, by making product descriptions and graphics available on its web site. A natural next step is to give customers access to current product availability information through the same web browser interface. This requires linking the web server to the database system that stores the (constantly changing) current product inventory levels.

The methods used to link web servers and DBMS systems have evolved rapidly over the last several years and have converged on the three-tier network architecture shown in Figure 3-5. The user interface is a web browser running on a PC or some other “thin client” device in the “front” tier. It communicates with a web server in the “middle tier.” When the user request is for something more complex than a simple web page, the web server passes the request to an application server whose role is to handle the business logic required to process the request. Often the request will involve access to an existing (“legacy”) application running on a mainframe system or to a corporate database. These systems run in the “back” tier of the architecture. As with the client/server architecture, SQL is solidly entrenched as the standard database language for communicating between the application server and back-end databases. All of the packaged application server products provide a SQL-based callable API for database access.

The Proliferation of SQL

As the standard for relational database access, SQL has had a major impact on all parts of the computer market. IBM has adopted SQL as a unifying database technology for its product line. SQL-based databases dominate the market for Unix-based computer systems. In the PC market, SQL databases on Windows NT are mounting a serious challenge to the dominance of Unix as a database processing platform, especially for departmental applications. SQL is accepted as a technology for online transaction processing, fully refuting the conventional wisdom of the 1980s that relational databases would never offer performance good enough for transaction processing applications.

SQL-based data warehousing and data mining applications are helping companies to discover customer purchase patterns and offer better products and services. On the Internet, SQL-based databases are the foundation of more personalized products, services, and information services that are a key benefit of electronic commerce.

SQL and IBM’s Unified Database Strategy

SQL plays a key role as the database access language that unifies IBM’s multiple incompatible computer families. Originally, this role was part of IBM’s Systems Application Architecture (SAA) strategy, announced in March 1987. Although IBM’s grand goals for SAA were not achieved, the unifying role of SQL has grown even more important over time. The DB2 database system, IBM’s flagship SQL-based DBMS, now runs on a broad range of IBM and non-IBM computer systems, including:

  • Mainframes. DB2 started as the SQL standard-bearer for IBM mainframes running MVS and has now replaced SQL/DS as the relational system for the VM and VSE mainframe operating systems.
  • AS/400. This SQL implementation runs on IBM’s family of midrange business systems, targeted at small- and medium-sized businesses and server applications.
  • RS/6000. DB2 runs under the Unix operating system on IBM’s family of RlSC-based workstations and servers, for engineering and scientific applications and as IBM’s own Unix database server platform.
  • Other Unix platforms. IBM supports DB2 on Unix-based server platforms from Sun Microsystems and Hewlett-Packard, the two largest Unix system vendors, and on Unix-based workstations from Silicon Graphics.
  • OS/2. A smaller-scale version of DB2 runs on this IBM-proprietary operating system for Intel-based personal computers
  • Windows NT. A PC-LAN server version of DB2 competes with Microsoft SQL Server, Oracle, and others on this fast-growing database server platform.

SQL on Minicomputers

Minicomputers were one of the most fertile early markets for SQL-based database systems. Oracle and Ingres were both originally marketed on Digital’s VAX/VMS minicomputer systems. Both products have since been ported to many other platforms. Sybase, a later database system specialized for online transaction processing, also targeted the VAX as one of its primary platforms.

Through the 1980s, the minicomputer vendors also developed their own proprietary relational databases featuring SQL. Digital considered relational databases so important that it bundled a run-time version of its Rdb/VMS database with every VAX/VMS system. Hewlett-Packard offered Allbase, a database that supported both its HPSQL dialect and a nonrelational interface. Data General’s DG/SQL database replaced its older nonrelational databases as DG’s strategic data management tool. In addition, many of the minicomputer vendors resold relational databases from the independent database software vendors. These efforts helped to establish SQL as an important technology for midrange computer systems.

Today, the minicomputer vendors’ SQL products have largely disappeared, beaten in the marketplace by multi-platform software from Oracle, Informix, Sybase, and others.

Accompanying this trend, the importance of proprietary minicomputer operating systems has faded as well, replaced by widespread use of Unix on midrange systems.

Yesterday’s minicomputer SQL market has effectively become today’s market for Unix- based database servers based on SQL.

SQL on Unix-Based Systems

SQL has firmly established itself as the data management solution of choice for Unix- based computer systems. Originally developed at Bell Laboratories, Unix became very popular in the 1980s as a vendor-independent, standard operating system. It runs on a wide range of computer systems, from workstations to mainframes, and has become the standard operating system for scientific and engineering applications.

In the early 1980s four major databases were already available for Unix systems. Two of them, Ingres and Oracle, were Unix versions of the products that ran on DEC’s proprietary minicomputers. The other two, Informix and Unify, were written specifically for Unix. Neither of them originally offered SQL support, but by 1985 Unify offered a SQL query language, and Informix had been rewritten as Informix-SQL, with full SQL support.

Today, Oracle, Informix, and Sybase dominate the Unix-based database market and are available on all of the leading Unix systems. Unix-based database servers are a mainstream building block for both client/server and three-tier Internet architectures. The constant search for higher SQL database performance has driven some of the most important trends in Unix system hardware. These include the emergence of symmetric multiprocessing (SMP) as a mainstream server architecture, and the use of RAID (Redundant Array of Independent Disk) technology to boost I/O performance.

SQL on Personal Computers

Databases have been popular on personal computers since the early days of the IBM PC. Ashton-Tate’s dBASE product reached an installed base of over one million MS- DOS-based PCs. Although these early PC databases often presented data in tabular form, they lacked the full power of a relational DBMS and a relational database language such as SQL. The first SQL-based PC databases were versions of popular minicomputer products that barely fit on personal computers. For example, Professional Oracle for the IBM PC, introduced in 1984, required two megabytes of memory—well above the typical

640KB PC configuration of the day.

The real impact of SQL on personal computers began with the announcement of OS/2 by IBM and Microsoft in April 1987. In addition to the standard OS/2 product, IBM announced a proprietary OS/2 Extended Edition (OS/2 EE) with a built-in SQL database and communications support. With the introduction, IBM again signaled its strong commitment to SQL, saying in effect that SQL was so important that it belonged in the computer’s operating system.

OS/2 Extended Edition presented Microsoft with a problem. As the developer and distributor of standard OS/2 to other personal computer manufacturers, Microsoft needed an alternative to the Extended Edition. Microsoft responded by licensing the Sybase DBMS, which had been developed for VAX, and began porting it to OS/2. In January 1988, in a surprise move, Microsoft and Ashton-Tate (the PC database leader at the time with its dBASE product) announced that they would jointly sell the resulting OS/2-based product, renamed SQL Server. Microsoft would sell SQL Server with OS/2 to computer manufacturers; Ashton-Tate would sell the product through retail channels to PC users. In September 1989, Lotus Development (the other member of the “big three” of PC software at the time) added its endorsement of SQL Server by investing in Sybase. Later that year, Ashton-Tate relinquished its exclusive retail distribution rights and sold its investment to Lotus.

SQL Server for OS/2 met with only limited success. But in typical Microsoft fashion, Microsoft continued to invest heavily in SQL Server development and ported it to its Windows NT operating system. For a while, Microsoft and Sybase remained partners, with Sybase focused on the minicomputer and Unix-based server markets and Microsoft focused on PC local area networks (LANs) and Windows NT. As Windows NT and Unix systems became more and more competitive as database server operating system platforms, the relationship became less cooperative and more competitive. Eventually, Sybase and Microsoft went their separate ways. The common heritage of Sybase’s and Microsoft’s SQL products can still be seen in product capabilities and some common SQL extensions (for example, stored procedures), but the product lines have already diverged significantly.

Today SQL Server is a major database system on Windows NT. SQL Server 7.0, which shipped in late 1998, provided a significant step up in the size and scale of database applications that SQL Server can support. In addition to SQL Server’s impact, the availability of Oracle, Informix, DB2, and other mainstream DBMS products has helped Windows NT to steadily make inroads into Unix’s dominance as a database server platform. While Unix continues to dominate the largest database server installations, Windows NT and the Intel architecture systems on which it runs have achieved credibility in the midrange market.

SQL and Transaction Processing

SQL and relational databases originally had very little impact in online transaction processing (OLTP) applications. With their emphasis on queries, relational databases were confined to decision support and low volume online applications, where their slower performance was not a disadvantage. For OLTP applications, where hundreds of users needed online access to data and subsecond response times, IBM’s nonrelational Information Management System (IMS) reigned as the dominant DBMS.

In 1986 a new DBMS vendor, Sybase, introduced a new SQL-based database especially designed for OLTP applications. The Sybase DBMS ran on VAX/VMS minicomputers and Sun workstations and focused on maximum online performance. Oracle Corporation and Relational Technology followed shortly with announcements that they, too, would offer OLTP versions of their popular Oracle and Ingres database systems. In the Unix market, Informix announced an OLTP version of its DBMS, named Informix-Turbo.

In 1988 IBM jumped on the relational OLTP bandwagon with DB2 Version 2, with benchmarks showing the new version operating at over 250 transactions per second on

large mainframes. IBM claimed that DB2 performance was now suitable for all but the most demanding OLTP applications, and encouraged customers to consider it as a serious alternative to IMS. OLTP benchmarks have now become a standard sales tool for relational databases, despite serious questions about how well the benchmarks actually measure performance in real applications.

The suitability of SQL for OLTP improved dramatically through the 1990s, with advances in relational technology and more powerful computer hardware both leading to ever higher transaction rates. DBMS vendors started to position their products based on their OLTP performance, and for a few years database advertising focused almost entirely on these “performance benchmark wars.” A vendor-independent organization, the Transaction Processing Council, jumped into the benchmarking fray with a series of vendor-independent benchmarks (TPC-A, TPC-B, and TPC-C), which only served to intensify the performance focus of the vendors.

By the late 1990s, SQL-based relational databases on high-end Unix-based database servers had passed the 1,000 transactions per second mark. Client/server systems using SQL databases have become the accepted architecture for implementing OLTP applications. From a position as “unsuitable for OLTP,” SQL has grown to be the industry standard foundation for building OLTP applications.

SQL and Workgroup Databases

The dramatic growth of PC LANs through the 1980s and 1990s created a new opportunity for departmental or “workgroup” database management. The original database systems focused on this market segment ran on IBM’s OS/2 operating system. In fact, SQL Server, now a key part of Microsoft’s Windows strategy, originally made its debut as an OS/2 database product. In the mid-1990s, Novell also made a concentrated effort to make its NetWare operating system an attractive workgroup database server platform. From the earliest days of PC LANs, NetWare had become established as the dominant network operating system for file and print servers. Through deals with Oracle and others, Novell sought to extend this leadership to workgroup database servers as well.

The arrival of Windows NT on the workgroup computing scene was the catalyst that caused the workgroup database market to really take off. While NetWare offered a clear performance advantage over NT as a workgroup file server, NT had a more robust, general-purpose architecture, more like the minicomputer operating systems. Microsoft successfully positioned NT as a more attractive platform for running workgroup applications (as an “application server”) and workgroup databases. Microsoft’s own SQL Server product was marketed (and often bundled) with NT as a tightly integrated workgroup database platform. Corporate information systems departments were at first very cautious about using relatively new and unproven technology, but the NT/SQL Server combination allowed departments and non-IS executives to undertake smaller- scale, workgroup-level projects on their own, without corporate IS help. This phenomenon, like the grass roots support for personal computers a decade earlier, fueled the early growth of the workgroup database segment.

Today, SQL is well established as a workgroup database standard. Microsoft’s SQL Server has been joined by Oracle, Informix, Sybase, DB2, and many other DBMS brands running on the Windows NT/Windows 2000 platform. Windows-based SQL databases are the second largest segment of the DBMS market and are the fastest growing. From this solid dominance in the workgroup segment, Windows-based server systems are mounting a continued assault on enterprise-class database applications, slowly but surely eating into low-end Unix-based database deployments.

SQL and Data Warehousing

For several years, the effort to make SQL a viable technology for OLTP applications shifted the focus away from the original relational database strengths of query processing and decision making. Performance benchmarks and competition among the major DBMS

brands focused on simple transactions like adding a new order to the database or determining a customer’s account balance. Because of the power of the relational database model, the databases that companies used to handle daily business operations could also be used to analyze the growing amounts of data that were being accumulated. A frequent theme of conferences and trade show speeches for IS managers was that a corporation’s accumulated data (stored in SQL databases, of course) should be treated as a valuable “asset” and used to help improve the quality of business decision-making.

Although relational databases could, in theory, easily perform both OLTP and decision- making applications, there were some very significant practical problems. OLTP workloads consisted of many short database transactions, and the response time for users was very important. In contrast, decision-support queries could involve sequential scans of large database tables to answer questions like “What is the average order size by sales region?” or “How do inventory trends compare with the same time a year ago?” These queries could take minutes or hours. If a business analyst tried to run one of these queries during a time when business transaction volumes reached their peak, it could cause serious degradation in OLTP performance. Another problem was that the data to answer useful questions about business trends was often spread across many different databases, typically involving different DBMS vendors and different computer platforms.

The desire to take advantage of accumulated business data, and the practical performance problems it caused for OLTP applications, led to a new database trend called “data warehousing.” The idea of the data warehouse is shown in Figure 3-6. Business data is extracted from OLTP systems, reformatted and validated as necessary, and then placed into a separate database that is dedicated to decision-making queries (the “warehouse”). The data extraction and transformation can be scheduled for off-hours batch processing. Ideally, only new or changed data can be extracted, minimizing the amount of data to be processed in the monthly, weekly, or daily warehouse “refresh” cycle. With this scheme, the time-consuming business analysis queries use the data warehouse, not the OLTP database, as their source of data.

SQL-based relational databases were a clear choice for the warehouse data store because of their flexible query processing. A series of new companies was formed to build the data extraction, transformation, and database query tools needed by the data warehouse model. In addition, DBMS vendors started to focus on the kinds of database queries that customers tended to run in the data warehouse. These queries tended to be large and complex—such as analyzing tens or hundreds of millions of individual cash- register receipts to look for product purchase patterns. They often involved time-series data—for example, analyzing product sales or market share data over time. They also tended to involve statistical summaries of data—total sales, average order volume, percent growth, and so on—rather than the individual data items themselves.

To address the specialized needs of data warehousing applications (often called “Online Analytical Processing” or OLAP), specialized databases began to appear. These databases were optimized for OLAP workloads in several different ways. Their performance was tuned for complex, read-only query access. They supported advanced statistical and other data functions, such as built-in time-series processing. They supported precalculation of database statistical data, so that retrieving averages and totals could be dramatically faster. Some of these specialized databases did not use SQL, but many did (leading to the companion term “ROLAP,” for Relational Online Analytic Processing). As with so many segments of the database market, SQL’s advantages as a standard proved to be a powerful force. Data warehousing has become a one-billion-dollar plus segment of the database market, and SQL-based databases are firmly entrenched as the mainstream technology for building data warehouses.

Summary

This chapter described the development of SQL and its role as a standard language for relational database management:

  • SQL was originally developed by IBM researchers, and IBM’s strong support of SQL is a key reason for its success.
  • There are official ANSI/ISO SQL standards and several other SQL standards, each slightly different from the ANSI/ISO standards.
  • Despite the existence of standards, there are many small variations among commercial SQL dialects; no two SQLs are exactly the same.
  • SQL has become the standard database management language across a broad range of computer systems and applications areas, including mainframes, workstations, personal computers, OLTP systems, client/server systems, data warehousing, and the Internet.

Chapter 4: Relational Databases

Overview

Database management systems organize and structure data so that it can be retrieved and manipulated by users and application programs. The data structures and access techniques provided by a particular DBMS are called its data model. A data model determines both the “personality” of a DBMS and the applications for which it is particularly well suited.

SQL is a database language for relational databases that uses the relational data model. What exactly is a relational database? How is data stored in a relational database? How do relational databases compare to earlier technologies, such as hierarchical and network databases? What are the advantages and disadvantages of the relational model? This chapter describes the relational data model supported by SQL and compares it to earlier strategies for database organization.

Early Data Models

As database management became popular during the 1970s and 1980s, a handful of popular data models emerged. Each of these early data models had advantages and disadvantages that played key roles in the development of the relational data model. In many ways the relational data model represented an attempt to streamline and simplify the earlier data models. In order to understand the role and contribution of SQL and the relational model, it is useful to briefly examine some data models that preceded the development of SQL.

File Management Systems

Before the introduction of database management systems, all data permanently stored on a computer system, such as payroll and accounting records, was stored in individual files. A file management system, usually provided by the computer manufacturer as part of the computer’s operating system, kept track of the names and locations of the files.

The file management system basically had no data model; it knew nothing about the internal contents of files. To the file management system, a file containing a word processing document and a file containing payroll data appeared the same.

Knowledge about the contents of a file—what data it contained and how the data was organized—was embedded in the application programs that used the file, as shown in Figure 4-1. In this payroll application, each of the COBOL programs that processed the employee master file contained a file description (FD) that described the layout of the data in the file. If the structure of the data changed—for example, if an additional item of data was to be stored for each employee—every program that accessed the file had to be modified. As the number of files and programs grew over time, more and more of a data processing department’s effort went into maintaining existing applications rather than developing new ones.

The problems of maintaining large file-based systems led in the late 1960s to the development of database management systems. The idea behind these systems was simple: take the definition of a file’s content and structure out of the individual programs, and store it, together with the data, in a database. Using the information in the database, the DBMS that controlled it could take a much more active role in managing both the data and changes to the database structure.

Hierarchical Databases

One of the most important applications for the earliest database management systems was production planning for manufacturing companies. If an automobile manufacturer decided to produce 10,000 units of one car model and 5,000 units of another model, it needed to know how many parts to order from its suppliers. To answer the question, the product (a car) had to be decomposed into assemblies (engine, body, chassis), which were decomposed into subassemblies (valves, cylinders, spark plugs), and then into sub- subassemblies, and so on. Handling this list of parts, known as a bill of materials, was a job tailor-made for computers.

The bill of materials for a product has a natural hierarchical structure. To store this data,

the hierarchical data model, illustrated in Figure 4-2, was developed. In this model, each record in the database represented a specific part. The records had parent/child relationships, linking each part to its subpart, and so on.

The problems of maintaining large file-based systems led in the late 1960s to the development of database management systems. The idea behind these systems was simple: take the definition of a file’s content and structure out of the individual programs, and store it, together with the data, in a database. Using the information in the database, the DBMS that controlled it could take a much more active role in managing both the data and changes to the database structure.

Hierarchical Databases

One of the most important applications for the earliest database management systems was production planning for manufacturing companies. If an automobile manufacturer decided to produce 10,000 units of one car model and 5,000 units of another model, it needed to know how many parts to order from its suppliers. To answer the question, the product (a car) had to be decomposed into assemblies (engine, body, chassis), which were decomposed into subassemblies (valves, cylinders, spark plugs), and then into sub- subassemblies, and so on. Handling this list of parts, known as a bill of materials, was a job tailor-made for computers.

The bill of materials for a product has a natural hierarchical structure. To store this data,

the hierarchical data model, illustrated in Figure 4-2, was developed. In this model, each record in the database represented a specific part. The records had parent/child relationships, linking each part to its subpart, and so on.

To access the data in the database, a program could:

  • find a particular part by number (such as the left door),
  • move “down” to the first child (the door handle),
  • move “up” to its parent (the body), or
  • move “sideways” to the next child (the right door).

Retrieving the data in a hierarchical database thus required navigating through the records, moving up, down, and sideways one record at a time.

One of the most popular hierarchical database management systems was IBM’s Information Management System (IMS), first introduced in 1968. The advantages of IMS and its hierarchical model follow.

  • Simple structure. The organization of an IMS database was easy to understand. The database hierarchy paralleled that of a company organization chart or a family tree.
  • Parent/child organization. An IMS database was excellent for representing parent/child relationships, such as “A is a part of B” or “A is owned by B.”
  • Performance. IMS stored parent/child relationships as physical pointers from one data record to another, so that movement through the database was rapid. Because the structure was simple, IMS could place parent and child records close to one another on the disk, minimizing disk input/output.

IMS is still a very widely used DBMS on IBM mainframes. Its raw performance makes it the database of choice in high-volume transaction processing applications such as processing bank ATM transactions, verifying credit card numbers, and tracking the delivery of overnight packages. Although relational database performance has improved dramatically over the last decade, the performance requirements of applications such as these have also increased, insuring a continued role for IMS.

Network Databases

The simple structure of a hierarchical database became a disadvantage when the data had a more complex structure. In an order-processing database, for example, a single

order might participate in three different parent/child relationships, linking the order to the customer who placed it, the salesperson who took it, and the product ordered, as shown in Figure 4-3. The structure of this type of data simply didn’t fit the strict hierarchy of IMS.

To deal with applications such as order processing, a new network data model was developed. The network data model extended the hierarchical model by allowing a record to participate in multiple parent/child relationships, as shown in Figure 4-4. These relationships were known as sets in the network model. In 1971 the Conference on Data Systems Languages published an official standard for network databases, which became known as the CODASYL model. IBM never developed a network DBMS of its own, choosing instead to extend IMS over the years. But during the 1970s independent software companies rushed to embrace the network model, creating products such as Cullinet’s IDMS, Cincom’s Total, and the Adabas DBMS that became very popular.

For a programmer, accessing a network database was very similar to accessing a hierarchical database. An application program could:

  • find a specific parent record by key (such as a customer number),
  • move down to the first child in a particular set (the first order placed by this customer),
  • move sideways from one child to the next in the set (the next order placed by the

same customer), or

  • move up from a child to its parent in another set (the salesperson who took the order).

Once again the programmer had to navigate the database record-by-record, this time specifying which relationship to navigate as well as the direction.

Network databases had several advantages:

  • Flexibility. Multiple parent/child relationships allowed a network database to represent data that did not have a simple hierarchical structure.
  • Standardization. The CODASYL standard boosted the popularity of the network model, and minicomputer vendors such as Digital Equipment Corporation and Data General implemented network databases.
  • Performance. Despite their greater complexity, network databases boasted performance approaching that of hierarchical databases. Sets were represented by pointers to physical data records, and on some systems, the database administrator could specify data clustering based on a set relationship.

Network databases had their disadvantages, too. Like hierarchical databases, they were very rigid. The set relationships and the structure of the records had to be specified in advance. Changing the database structure typically required rebuilding the entire database.

Both hierarchical and network databases were tools for programmers. To answer a question such as “What is the most popular product ordered by Acme Manufacturing?” a programmer had to write a program that navigated its way through the database. The backlog of requests for custom reports often stretched to weeks or months, and by the time the program was written, the information it delivered was often worthless.

The disadvantages of the hierarchical and network models led to intense interest in the new relational data model when it was first described by Dr. Codd in 1970. At first the relational model was little more than an academic curiosity. Network databases continued to be important throughout the 1970s and early 1980s, particularly on the minicomputer systems that were surging in popularity. However, by the mid-1980s the relational model was clearly emerging as the “new wave” in data management. By the early 1990s, network databases were clearly declining in importance, and today they no longer play a major role in the database market.

The Relational Data Model

The relational model proposed by Dr. Codd was an attempt to simplify database structure. It eliminated the explicit parent/child structures from the database, and instead represented all data in the database as simple row/column tables of data values. Figure 4-5 shows a relational version of the network order-processing database in Fiqure 4-4.

Unfortunately, the practical definition of “What is a relational database?” became much less clear-cut than the precise, mathematical definition in Codd’s 1970 paper. Early relational database management systems failed to implement some key parts of Codd’s model, which are only now finding their way into commercial products. As the relational concept grew in popularity, many databases that were called “relational” in fact were not.

In response to the corruption of the term “relational,” Dr. Codd wrote an article in 1985 setting forth 12 rules to be followed by any database that called itself “truly relational.” Codd’s 12 rules have since been accepted as the definition of a truly relational DBMS. However, it’s easier to start with a more informal definition:

A relational database is a database where all data visible to the user is organized strictly as tables of data values, and where all database operations work on these tables.

The definition is intended specifically to rule out structures such as the embedded pointers of a hierarchical or network database. A relational DBMS can represent parent/child relationships, but they are represented strictly by the data values contained in the database tables.

The Sample Database

Figure 4-6 shows a small relational database for an order-processing application. This sample database is used throughout this book and provides the basis for most of the examples. Appendix A contains a complete description of the database structure and its contents.

The sample database contains five tables. Each table stores information about one particular kind of entity:

  • The cdsCOMERS table stores data about each customer, such as the company name, credit limit, and the salesperson who calls on the customer.
  • The sALESRE PS table stores the employee number, name, age, year-to-date sales, and other data about each salesperson.
  • The off ICES table stores data about each of the five sales offices, including the city where the office is located, the sales region to which it belongs, and so on.
  • The oRDERS table keeps track of every order placed by a customer, identifying the salesperson who took the order, the product ordered, the quantity and amount of the order, and so on. For simplicity, each order is for only one product.

The PRoDUCTS table stores data about each product available for sale, such as the manufacturer, product number, description, and price.

Tables

The organizing principle in a relational database is the table, a rectangular, row/column arrangement of data values. Each table in a database has a unique table name that identifies its contents. (Actually, each user can choose their own table names without worrying about the names chosen by other users, as explained in Chapter 5.)

The row/column structure of a table is shown more clearly in Figure 4-7, which is an enlarged view of the o++ICES table. Each horizontal row of the orFICES table represents a single physical entity—a single sales office. Together the five rows of the table represent all five of the company’s sales offices. All of the data in a particular row of the table applies to the office represented by that row.

Each vertical column of the orr ICES table represents one item of data that is stored in the database for each office. For example, the CITY column holds the location of each office. The SALES Column contains each office’s year-to-date sales total. The MGR column shows the employee number of the person who manages the office.

Each row of a table contains exactly one data value in each column. In the row representing the New York office, for example, the cITy Column contains the value “New York.” The sALES Column contains the value “$692,637.00,” which is the year-to-date sales total for the New York office.

For each column of a table, all of the data values in that column hold the same type of data. For example, all of the cITv column values are words, all of the sALEs values are money amounts, and all of the MGR Values are integers (representing employee numbers). The set of data values that a column can contain is called the domain of the column. The domain of the c ITY COlumn is the set of all names of cities. The domain of the sALES Column is any money amount. The domain of the REcIoN COlumn is just two data values, “Eastern” and “Western,” because those are the only two sales regions the company has!

Each column in a table has a column name, which is usually written as a heading at the top of the column. The columns of a table must all have different names, but there is no prohibition against two columns in two different tables having identical names. In fact, frequently used column names, such aS NAME, ADDRES S, QTY, PRICE, and sALEs, are often found in many different tables of a production database.

The columns of a table have a left-to-right order, which is defined when the table is first created. A table always has at least one column. The ANSI/ISO SQL standard does not specify a maximum number of columns in a table, but almost all commercial SQL products do impose a limit. Usually the limit is 255 columns per table or more.

Unlike the columns, the rows in a table do not have any particular order. In fact, if you use two consecutive database queries to display the contents of a table, there is no

guarantee that the rows will be listed in the same order twice. Of course you can ask SQL to sort the rows before displaying them, but the sorted order has nothing to do with the actual arrangement of the rows within the table.

A table can have any number of rows. A table of zero rows is perfectly legal and is called an empty table (for obvious reasons). An empty table still has a structure, imposed by its columns; it simply contains no data. The ANSI/ISO standard does not limit the number of rows in a table, and many SQL products will allow a table to grow until it exhausts the available disk space on the computer. Other SQL products impose a maximum limit, but it is always a very generous one—two billion rows or more is common.

Primary Keys

Because the rows of a relational table are unordered, you cannot select a specific row by its position in the table. There is no “first row,” “last row,” or “thirteenth row” of a table.

How then can you specify a particular row, such as the row for the Denver sales office?

In a well-designed relational database every table has some column or combination of columns whose values uniquely identify each row in the table. This column (or columns) is called the primary key of the table. Look once again at the ohéICES table in Fiqure 4-

7. At first glance, either the OFFICE column or the c ITY column could serve as a primary key for the table. But if the company expands and opens two sales offices in the same city, the cITY Column could no longer serve as the primary key. In practice, ‘ ID numbers,” such as an office number (oFFICE in the o7FICES table), an employee number (zMPIu NOM in the sALES REP S table), and customer numbers (cus                                                                               NOM in the CSS TOMERS table), are often chosen as primary keys. In the case of the oRDERS table there is no choice—the only thing that uniquely identifies an order is its order number (ORDER NOM).

The PRoDvcT s table, part of which is shown in Figure 4-8, is an example of a table where the primary key must be a combination of columns. The MFR ID Column identifies the manufacturer of each product in the table, and the PRoDUCT ID Column specifies the manufacturer’s product number. The pRoDUCT ID column might make a good primary key, but there’s nothing to prevent two different manufacturers from using the same number for their products. Therefore, a combination of the MFR ID and PRODUCT ID columns must be used as the primary key of the pRoDUCTS table. Every product in the table is guaranteed to have a unique combination of data values in these two columns.

The primary key has a different unique value for each row in a table, so no two rows of a table with a primary key are exact duplicates of one another. A table where every row is different from all other rows is called a relation in mathematical terms. The name “relational database” comes from this term, because relations (tables with distinct rows) are at the heart of a relational database.

Although primary keys are an essential part of the relational data model, early relational database management systems (System/R, DB2, Oracle, and others) did not provide explicit support for primary keys. Database designers usually ensured that all of the tables in their databases had a primary key, but the DBMS itself did not provide a way to identify the primary key of a table. DB2 Version 2, introduced in April 1988, was the first of IBM’s commercial SQL products to support primary keys. The ANSI/ISO standard was subsequently expanded to include a definition of primary key support.

Relationships

One of the major differences between the relational model and earlier data models is that explicit pointers, such as the parent/child relationships of a hierarchical database, are banned from relational databases. Yet obviously these relationships exist in a relational database. For example, in the sample database, each of the salespeople is assigned to a particular sales office, so there is an obvious relationship between the rows of the OFFICES table and the rows of the sALESRE PS table. Doesn’t the relational model “lose information” by banning these relationships from the database?

As shown in Figure 4-9, the answer to the question is “no.” The figure shows a close-up of a few rows of the OFFICE s and s AIDES REP S tables. Note that the REP OFFICE column of the sALESRE PS table contains the office number of the sales office where each salesperson works. The domain of this column (the set of legal values it may contain) is precisely the set of office numbers found in the oFFICE column of the OFFICES table. In fact, you can find the sales office where Mary Jones works by finding the value in Mary’S REP OFFICE column (11) and finding the row of the oneICES table that has a matching value in the oEFICE COIUMn (in the row for the New York office).

Similarly, to find all the salespeople who work in New York, you could note the oEEICE value for the New York row (11) and then scan down the REP OFFICE COlumn of the SALESREPS table looking for matching values (in the rows for Mary Jones and Sam Clark).

The parent/child relationship between a sales office and the people who work there isn’t lost by the relational model, it’s just not represented by an explicit pointer stored in the database. Instead, the relationship is represented by common data values stored in the two tables. All relationships in a relational database are represented this way. One of the main goals of the SQL language is to let you retrieve related data from the database by manipulating these relationships in a simple, straightforward way.

Foreign Keys

A column in one table whose value matches the primary key in some other table is called a foreign key. In Figure 4-9 the REP OFFICE Column is a foreign key for the offices table. Although REP OFF ICE is a column in the sales REP S table, the values that this column contains are office numbers. They match values in the o7FICE column, which is the primary key for the off ICES table. Together, a primary key and a foreign key create a parent/child relationship between the tables that contain them, just like the parent/child relationships in a hierarchical database.

Just as a combination of columns can serve as the primary key of a table, a foreign key can also be a combination of columns. In fact, the foreign key will always be a compound (multi-column) key when it references a table with a compound primary key. Obviously, the number of columns and the data types of the columns in the foreign key and the primary key must be identical to one another.

A table can contain more than one foreign key if it is related to more than one other table. Figure 4-10 shows the three foreign keys in the oRDERS table of the sample database:

  • The cUsI column is a foreign key for the cvs ToMERS table, relating each order to the customer who placed it.
  • The REP column is a foreign key for the sALESREPS table, relating each order to the salesperson who took it.
  • The MFR and PRoDvc z columns together are a composite foreign key for the PRODUCT S table, relating each order to the product being ordered.

The multiple parent/child relationships created by the three foreign keys in the oRDERS table may seem familiar to you, and they should. They are precisely the same relationships as those in the network database of Figure 4-4. As the example shows, the relational data model has all of the power of the network model to express complex relationships.

Foreign keys are a fundamental part of the relational model because they create relationships among tables in the database. Unfortunately, as with primary keys, foreign key support was missing from early relational database management systems. They were added to DB2 Version 2, have since been added to the ANSI/ISO standard, and now appear in many commercial products.

Codd’s Twelve Rules *

In his 1985 Computerworld article, Ted Codd presented 12 rules that a database must obey if it is to be considered truly relational. Codd’s 12 rules, shown in the following list, have since become a semi-official definition of a relational database. The rules come out of Codd’s theoretical work on the relational model and actually represent more of an ideal goal than a definition of a relational database.

  1. The information rule. All information in a relational database is represented explicitly at the logical level and in exactly one way—by values in tables.
  • Guaranteed access rule. Each and every datum (atomic value) in a relational database is guaranteed to be logically accessible by resorting to a combination of table name, primary key value, and column name.
  • Systematic treatment of null values. Null values (distinct from an empty character string or a string of blank characters and distinct from zero or any other number) are

supported in a fully relational DBMS for representing missing information and inapplicable information in a systematic way, independent of the data type.

  • Dynamic online catalog based on the relational model. The database description is represented at the logical level in the same way as ordinary data, so that authorized users can apply the same relational language to its interrogation as they apply to the regular data.
  • Comprehensive data sublanguage rule. A relational system may support several languages and various modes of terminal use (for example, the fill-in-the-blanks mode). However, there must be at least one language whose statements are expressible, per some well-defined syntax, as character strings, and that is comprehensive in supporting all of the following items:
  • Data definition
  • View definition
  • Data manipulation (interactive and by program)
  • Integrity constraints
  • Authorization
  • Transaction boundaries (begin, commit, and rollback)
  • View updating rule. All views that are theoretically updateable are also updateable by the system.
  • High-level insert, update, and delete. The capability of handling a base relation or a derived relation as a single operand applies not only to the retrieval of data but also to the insertion, update, and deletion of data.
  • Physical data independence. Application programs and terminal activities remain logically unimpaired whenever any changes are made in either storage representations or access methods.
  • Logical data independence. Application programs and terminal activities remain logically unimpaired when information preserving changes of any kind that theoretically permit unimpairment are made to the base tables.
  • Integrity independence. \ ntegrity constraints specific to a particular relational database must be definable in the relational data sublanguage and storable in the catalog, not in the application programs.
  1. Distribution independence. A relational DBMS has distribution independence.
  1. Nonsubversion rule. If a relational system has a low-level (single record at a time) language, that low level cannot be used to subvert or bypass the integrity rules and constraints expressed in the higher-level relational language (multiple records at a time).

During the early 1990s, it became popular practice to compile “scorecards” for commercial DBMS products, showing how well they satisfy each of the rules. Unfortunately, the rules are subjective so the scorecards were usually full of footnotes and qualifications, and didn’t reveal a great deal about the products. Today, the basis of competition for database vendors tends to revolve around performance, new features, the availability of development tools, the quality of vendor support, and other issues,

rather than conformance to Codd’s rules. Nonetheless, they are an important part of the history of the relational model.

Rule 1 is basically the informal definition of a relational database presented at the beginning of this section.

Rule 2 stresses the importance of primary keys for locating data in the database. The table name locates the correct table, the column name finds the correct column, and the primary key value finds the row containing an individual data item of interest. Rule 3 requires support for missing data through NULL Values, which are described in Chapter 5.

Rule 4 requires that a relational database be self-describing. In other words, the

database must contain certain system tables whose columns describe the structure of the database itself. These tables are described in Chapter 16.

Rule 5 mandates using a relational database language, such as SQL, although SQL is not specifically required. The language must be able to support all the central functions of a DBMS—creating a database, retrieving and entering data, implementing database security, and so on.

Rule 6 deals with views, which are virtual tables used to give various users of a database different views of its structure. It is one of the most challenging rules to implement in practice, and no commercial product fully satisfies it today. Views and the problems of updating them are described in Chapter 14.

Rule 7 stresses the set-oriented nature of a relational database. It requires that rows be treated as sets in insert, delete, and update operations. The rule is designed to prohibit implementations that only support row-at-a-time, navigational modification of the database.

Rule 8 and Rule 9 insulate the user or application program from the low-level implementation of the database. They specify that specific access or storage techniques used by the DBMS, and even changes to the structure of the tables in the database, should not affect the user’s ability to work with the data.

Rule 10 says that the database language should support integrity constraints that restrict the data that can be entered into the database and the database modifications that can be made. This is another of the rules that is not supported in most commercial DBMS products.

Rule 11 says that the database language must be able to manipulate distributed data located on other computer systems. Distributed data and the challenges of managing it are described in Chapter 20.

Finally, Rule 12 prevents “other paths” into the database that might subvert its relational structure and integrity.

Summary

SQL is based on the relational data model that organizes the data in a database as a collection of tables:

  • Each table has a table name that uniquely identifies it.
  • Each table has one or more named columns, which are arranged in a specific, left-to-

right order.

  • Each table has zero or more rows, each containing a single data value in each column. The rows are unordered.
  • All data values in a given column have the same data type, and are drawn from a set of legal values called the domain of the column.

Tables are related to one another by the data they contain. The relational data model uses primary keys and foreign keys to represent these relationships among tables:

  • A primary key is a column or combination of columns in a table whose value(s) uniquely identify each row of the table. A table has only one primary key.
  • A foreign key is a column or combination of columns in a table whose value(s) are a primary key value for some other table. A table can contain more than one foreign key, linking it to one or more other tables.
  • A primary key/foreign key combination creates a parent/child relationship between the tables that contain them.

Part II: Retrieving Data

Chapter List

Chapter      SQL Basics

Chapter     Simgle Queries

6:

Chapter      Multi-Table Queries (Joins)

7

Chapter       Summary Queries 8:

Chapter      Subqueries and Querv Expressions

9:

Chapter 5: SQL Basics

Overview

This chapter begins a detailed description of the features of SQL. It describes the basic structure of a SQL statement and the basic elements of the language, such as keywords, data types, and expressions. The way that SQL handles missing data through NULL values is also described. Although these are basic features of SQL, there are some subtle differences in the way they are implemented by various popular SQL products, and in many cases the SQL products provide significant extensions to the capabilities specified in the ANSI/ISO SQL standard. These differences and extensions are also described in this chapter.

Statements

The main body of the SQL language consists of about 40 statements, which are summarized in Table 5-1. Each statement requests a specific action from the DBMS, such as creating a new table, retrieving data, or inserting new data into the database. All SQL statements have the same basic form, illustrated in Figure 5-1.

Table 5-1: Major SQL Statements

Statement

Data Manipulation

SELECT INSERT DELETE UPDATE

Data Definition

Description

Retrieves data from the database Adds new rows of data to the database

Removes rows of data from the database

Modifies existing database data

CREATE TABLE         Adds a new table to the database

DROP TABLE     Removes a table from the database AIuTER TABIuE Changes the structure of an existing table CREATE VIEW         Adds a new view to the database

DROP VIEW       Removes a view from the database

CREATE INDEX       Builds an index for a column

DROP INDEX      Removes the index for a column

CREATE SCHEMA  Adds a new schema to the database DROP SCHEMA                Removes a schema from the database CREATE DOMAIN                Adds a new data value domain

AFTER DOMAIN        Changes a domain definition

DROP DOMAIN      Removes a domain from the database J4ccess Control

GRANT REVOKE

Transaction

Control

COMMIT ROLLBACK

SET TRANSACTION

Programmatic

SOL

DECLARE EXPLAIN OPEN FETCH CLOSE PREPARE EXECUTE DESCRIBE

Grants user access privileges Removes user access privileges

Ends the current transaction Aborts the current transaction

Defines data access characteristics of the current transaction

Defines a cursor for a query

Describes the data access plan for a query Opens a cursor to retrieve query results Retrieves a row of query results

Closes a cursor

Prepares a SQL statement for dynamic execution Executes a SQL statement dynamically Describes a prepared query

Every SQL statement begins with a verb, a keyword that describes what the statement does. CREATE, INSERT, DEIWE BE, and coMMIT are typical verbs. The statement continues with one or more clauses. A clause may specify the data to be acted upon by the statement or provide more detail about what the statement is supposed to do. Every clause also begins with a keyword, such aS WHERE, FROM, INTo, and HAVING. Some clauses are optional; others are required. The specific structure and content vary from one clause to another. Many clauses contain table or column names; some may contain additional keywords, constants, or expressions.

The ANSI/ISO SQL standard specifies the SQL keywords that are used as verbs and in statement clauses. According to the standard, these keywords cannot be used to name database objects, such as tables, columns, and users. Many SQL implementations relax this restriction, but it’s generally a good idea to avoid the keywords when you name your

tables and columns. Table 5-2 lists the keywords included in the ANSI/ISO SQL2 standard, which roughly tripled the number of keywords reserved by the earlier SQL1 standard. The SQL2 standard also includes a list of “potential keywords” that are candidates for becoming keywords in future revisions of the standard. These keywords are listed in Table 5-3.

Table 5-2: ANSI/ISO SQL2 Keywords

ABSOLUTECROSS GETNEXTSPACE
ACTIONCURRENT GLOBALNOSQL
ADDCURRENTDATEGONOTSQLCODE
ALLCURRENTTIMEGOTONULLSQLERROR
  ALLOCATE  CURRENT TIMESTAMP GRANT  OCTET LENGTH SQLSTATE
ALTERCURRENT USER GROUPOF           SUBSTRING
ANDCURSOR       HAVINGON           SUM
ANYDATE         HOURONLY         SYSTEM USER
AREDAY          IDENTITYOPEN         TABLE
ASDEALLOCATE   IMMEDIATEOPTION       TEMPORARY
ASCDEC          INOR           THEN
ASSERTIONDECIMAL      INDICATORORDER        TIME
ATDECLARE      INITIALLYOUTER        TIMESTAMP
AUTHORIZATIONDEFAULT      INNEROUTPUT       TIMEZONE HOUR
AVGDEFERRABLE INPUTOVERLAPS     TIMEZONE MINUTE
BEGINDEFERRED    INSENSITIVEPAD          TO
BETWEENDELETE       INSERTPARTIAL      TRAILING
BITDESC         INTPOSITION     TRANSACTION
BIT LENGTHDESCRIBE     INTEGERPRECISION    TRANSLATE
BOTHDESCRIPTOR   INTERSECTPREPARE      TRANSLATION
BYDIAGNOSTICS   INTERVALPRESERVE     TRIM
CASCADEDISCONNECT   INTOPRIMARY      TRUE
CASCADED      DISTINCTISPRIORUNION
CASE          DOMAINISOLATIONPRIVILEGESUNIQUE
CAST          DOUBLEJOINPROCEDUREUNKNOWN
CATALOG       DROPKEYPUBLICUPDATE
CHAR          ELSELANGUAGEREADUPPER
CHARACTER     ENDLASTREALUSAGE
CHAR LENGTH    END-EXECLEADINGREFERENCESUSER
CHARACTER LENGTHESCAPELEFTRELATIVEUSING
CHECK         EXCEPTLEVELRESTRICTVALUE
CLOSE         EXCEPTIONLIKEREVOKEVALUES
COALESCE      EXECLOCALRIGHTVARCHAR
COLLATE       EXECUTELOWERROLLBACKVARYING
COLLATION     EXISTSMATCHROWSVIEW
COLUMN        EXTERNALMAXSCHEMAWHEN
COMMIT        EXTRACTMINSCROLLWHENEVER
CONNECT       FALSEMINUTESECONDWHERE
CONNECTION     FETCHMODULESECTIONWITH
CONSTRAINT     FIRSTMONTHSELECTWORK
CONSTRAINTS    FLOATNAMESSESSIONWRITE
CONTINUE      FORNATIONALSESSION USERYEAR
CONVERT       FOREIGNNATURALSETZONE
CORRESPONDING FOUNDNCHARSIZE 
COUNT         FROMNULLIFSMALLINT 
CREATE        FULLNUMERICSOME 

Table 5-3: ANSI/ISO SQL2 Potential Keywords

AFTEREQUALSOLDRETURNTEST
ALIASGENERALOPERATIONRETURNSTHERE
ASYNCIFOPERATORSROLETRIGGER
BEFOREIGNOREOTHERSROUTINETYPE
BOOLEANLEAVEPARAMETERSROWUNDER
BREADTHLESSPENDANTSAVEPOINTVARIABLE
COMPLETIONLIMITPREORDERSEARCHVIRTUAL
CALLLOOPPRIVATESENSITIVEVISIBLE
CYCLEMODIFYPROTECTEDSEQUENCEWAIT
DATANEWRECURSIVESIGNALWHILE
DEPTHNONEREFSIMILARWITHOUT
DICTIONARYOBJECTREFERENCINGSQLEXCEPTION 
EACHOFFREPLACESQLWARNING 
ELSEIFOIDRESIGNALSTRUCTURE 

Throughout this book, the acceptable forms of a SQL statement are illustrated by a syntax diagram, such as the one shown in Figure 5-2. A valid SQL statement or clause is constructed by “following the line” through the syntax diagram to the dot that marks the end of the diagram. Keywords in the syntax diagram and in the examples (such as DELETE and FRoM in Figure 5-2) are always shown in UPPERCASE, but almost all SQL implementations accept both uppercase and lowercase keywords, and it’s often more convenient to actually type them in lowercase.

Variable items in a SQL statement (such as the table name and search condition in Figure 5-2) are shown in lowercase italics. It’s up to you to specify the appropriate item each time the statement is used. Optional clauses and keywords, such as the WHERE Clause in Figure 5-2, are indicated by alternate paths through the syntax diagram. When a choice of optional keywords is offered, the default choice (that is, the behavior of the statement if no

keyword is specified) iS ANDERS INED.

Names

The objects in a SQL-based database are identified by assigning them unique names. Names are used in SQL statements to identify the database object on which the statement should act. The most fundamental named objects in a relational database are table names (which identify tables), column names (which identify columns), and user names (which identify users of the database); conventions for naming these objects were specified in the original SQL1 standard. The ANSI/ISO SQL2 standard significantly expanded the list of named entities, to include schemas (collections of tables), constraints (restrictions on the contents of tables and their relationships), domains (sets of legal values that may be assigned to a column), and several other types of objects.

Many SQL implementations support additional named objects, such as stored procedures (Sybase and SQL Server), primary key/foreign key relationships (DB2), and data entry forms (Ingres).

The original ANSI/ISO standard specified that SQL names must contain 1 to 18 characters, must begin with a letter, and may not contain any spaces or special punctuation characters. The SQL2 standard increased the maximum to 128 characters. In practice the names supported by SQL-based DBMS products vary significantly. DB2, for example, restricts user names to 8 characters but allows longer table and column names. The various products also differ in the special characters they permit in table names. For portability it’s best to keep names relatively short and to avoid the use of special characters.

Table Names

When you specify a table name in a SQL statement, SQL assumes that you are referring to one of your own tables (that is, a table that you created). Usually, you will want to choose table names that are short but descriptive. The table names in the sample database (oRDERS, CUSTOMERS, OFFICES , SALESRE P s) are good examples. In a personal or departmental database, the choice of table names is usually up to the database developer or designer.

In a larger, shared-use corporate database, there may be corporate standards for naming tables, to insure that table names do not conflict. In addition, most DBMS brands allow different users to create tables with the same name (that is, both Joe and Sam can create a table named BIRTHDAY s). The DBMS uses the appropriate table, depending on which user is requesting data. With the proper permission, you can also refer to tables owned by other users, by using a qualified table name. A qualified table name specifies both the name of the table’s owner and the name of the table, separated by a period (.). For example, Joe could access the BIRTHDAy s table owned by Sam by using the qualified table name:

SAM.BIRTHDAYS

A qualified table name generally can be used in a SQL statement wherever a table name

can appear.

The ANSI/ISO SQL2 standard generalizes the notion of a qualified table name even further. It allows you to create a named collection of tables, called a schema. You can refer to a table in a specific schema using a qualified table name. For example, the BIRTHDAys table in the zMpluOYEE INTO schema would be referenced as:

EMPLOYEEINFO.BIRTHDAYS

Chapter 13 provides more information about schemas, users, and other aspects of SQL database structure.

Column Names

When you specify a column name in a SQL statement, SQL can normally determine from the context which column you intend. However, if the statement involves two columns with the same name from two different tables, you must use a qualified column name to unambiguously identify the column you intend. A qualified column name specifies both the name of the table containing the column and the name of the column, separated by a period (.). For example, the column named s kEs in the s kESREPS table has the qualified column name:

SALESREPS.SALES

If the column comes from a table owned by another user, a qualified table name is used in the qualified column name. For example, the BIRTHDATE COlumn in the BIR’I’HDAY S table owned by the user sAM is specified by the fully qualified column name:

SAM.BIRTHDAYS.BIRTH DATE

Qualified column names can generally be used in a SQL statement wherever a simple (unqualified) column name can appear; exceptions are noted in the descriptions of the individual SQL statements.

Data Types

The ANSI/ISO SQL standard specifies the various types of data that can be stored in a SQL-based database and manipulated by the SQL language. The original SQL1 standard specified only a minimal set of data types. The SQL2 standard expanded this list to include variable-length character strings, date and time data, bit strings, and other types. Today’s commercial DBMS products can process a rich variety of different kinds of data, and there is considerable diversity in the particular data types supported across different DBMS brands. Typical data types include:

  • Integers. Columns holding this type of data typically store counts, quantities, ages, and so on. Integer columns are also frequently used to contain I.D. numbers, such as customer, employee, and order numbers.
  • Decimal numbers. Columns with this data type store numbers that have fractional parts and must be calculated exactly, such as rates and percentages. They are also frequently used to store money amounts.
  • Floating point numbers. Columns with this data type are used to store scientific numbers that can be calculated approximately, such as weights and distances. Floating point numbers can represent a larger range of values than decimal numbers but can produce round-off errors in computations.
  • Fixed-length character strings. Columns holding this type of data typically store names of people and companies, addresses, descriptions, and so on.
  • Variable-length character strings. This data type allows a column to store character strings that vary in length from row to row, up to some maximum length. (The SQL1 standard permitted only fixed-length character strings, which are easier for the DBMS to process but can waste considerable space.)
  • Money amounts. Many SQL produCts support a MONEY or cURRENcy type, which is usually stored as a decimal or floating point number. Having a distinct money type allows the DBMS to properly format money amounts when they are displayed.
  • Dates and times. Support for date/time values is also common in SQL products, although the details vary dramatically from one product to another. Various combinations of dates, times, timestamps, time intervals, and date/time arithmetic are generally supported. The SQL2 standard includes an elaborate specification for DATE, TIME, T IMESTmp, and INTERVAL data types, including support for time zones and time precision (for example, tenths or hundredths of seconds).
  • Boolean data. Some SQL products, such as Informix Dynamic Server, support logical (TRvE or    USE) Values as an explicit type, and some permit logical operations (comparison, AND/On, and so on) on the stored data within SQL statements.
  • Long text. Several SQL-based databases support columns that store long text strings (typically up to 32,000 or 65,000 characters, and in some cases even larger). This allows the database to store entire documents, product descriptions, technical papers, resumes, and similar unstructured text data. The DBMS usually restricts the use of these columns in interactive queries and searches.
  • Unstructured byte streams. Several DBMS products allow unstructured, variable- length sequences of bytes to be stored and retrieved. Columns containing this data are used to store compressed video images, executable code, and other types of unstructured data. SQL Server’s IMAGE data type, for example, can store a stream of up to 2 billion bytes of data.
  • Asian characters. As databases grow to support global applications, DBMS vendors have added support for fixed-length and variable-length strings of 16-bit characters used to represent Kanji and other Asian characters. Searching and sorting on these GRAPH I c and vARGRAPHI c types is usually not permitted, however.

Table 5-4 lists the data types specified in the ANSI/ISO SQL standard.

Table 5-4: ANSI/ISO SQL Data Types

Data Type

CHAR/en) CHARACTER/en)

VARCHAR/en)

CHAR VARYINcfen) CHARACTER VARYINc/en)

NCHAR/en)

NATIONAL CHARfen) NATIONAL CHARACTER/en)

NCHAR VARYING/en)

NATIONAL CHAR VARYINGfen) NATIONAL CHARACTER

VARs INc glen)

INTEGER INT

Description

Fixed-length character strings

Variable-length character strings*

Fixed-length national character strings*

Variable-length national character strings*

Integer numbers

SMALLINT

BIT /en)

BI T VARYING (/en)

NUMERI c (precision,scale› DECIMAL ‹precision,scale) DEC ‹precision,scale)

+kO      precision)

REAL

DOUBLE PRECISION DATE

TIME precision)

T I ME STAMP precision)

INTERVAL

*new data type in SQL2

The differences between the data types offered in various SQL implementations is one of the practical barriers to the portability of SQL-based applications. These differences have come about as a result of innovation as relational databases have evolved to include a broader range of capabilities. The typical pattern has been:

  • A DBMS vendor adds a new data type that provides useful new capability for a certain

group of users.

  • Other DBMS vendors add the same or similar data types, adding their own innovations to differentiate their products from the others.
  • Over several years, the popularity of the data type grows, and it becomes a part of the “mainstream” set of data types supported by most SQL implementations.
  • The standards bodies become involved to try to standardize the new data type and eliminate arbitrary differences between the vendor implementations. The more well- entrenched the data type has become, the more difficult the set of compromises faced by the standards group. Usually this results in an addition to the standard that does not exactly match any of the current implementations.
  • DBMS vendors slowly add support for the new standardized data type as an option to their systems, but because they have a large installed base that is using the older (now “proprietary”) version of the data type, they must maintain support for this form of the data type as well.
  • Over a very long period of time (typically several major releases of the DBMS product),

users migrate to the new, standardized form of the data type, and the DBMS vendor can begin the process of obsoleting the proprietary version.

Date/time data provides an excellent example of this phenomenon and the data type variations it creates. DB2 has long offered support for three different date/time data types:

  • DATE, which stores a date like June 30, 1991,
  • TIME, which stores a time of day like 12:30 P.M., and
  • TIMESTAMP, which is a specific instant in history, with a precision down to the

nanosecond.

Specific dates and times can be specified as string constants, and date arithmetic is supported. Here is an example of a valid query using DB2 dates, assuming that the HIRED Iz column contains D IE data:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE >= ’05/30/1989′ + 15 DAYS

SQL Server provides a single date/time data type, called DATETIME, which closely resembles the DB2 TIMESTAMP data type. If HIRE DATE contained DA’I’E’I’IME data, SQL Server could accept this version of the query (without the date arithmetic):

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE >= ’06/14/1989′

Since no specific time on June 14, 1989, is specified in the query, SQL Server defaults to midnight on that date. The SQL Server query thus really means:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE >= ’06/14/1989 12:00AM’

If a salesperson’s hire date was stored in the database as midday on June 14, 1989, the salesperson would not be included in the SQL Server query results but would have been included in the DB2 results (because only the date would be stored). SQL Server also supports date arithmetic through a set of built-in functions. Thus the DB2-style query can also be specified in this way:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE >= DATEADD(DAY, 15, ’05/30/1989′)

which, of course, is considerably different from the DB2 syntax.

Oracle also supports date/time data, with a single data type called DATE. Like SQL Server’s DAIET IME type, an Oracle DATE is, in fact, a timestamp. Also like SQL Server, the time part of an Oracle DATE value defaults to midnight if no time is explicitly specified. The default Oracle date format is different from the DB2 and SQL Server formats, so the Oracle version of the query becomes:

SELECT NAME, HIRE DATE

FROM SALESREPS

WHERE HIRE DATE >= ’14-JUN-89′

Oracle also supports limited date arithmetic, so the DB2-style query can also be specified but without the DAzs keyword:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE >= ’30-MAY-89′ + 15

Finally, the ANSI/ISO SQL2 standard added support for date/time data with a set of data types that are based on, but not identical to, the DB2 types. In addition to the DATE, TIME, and I IMES TAMP data types, the standard specifies an INIERVAz data type, which can be used to store a time interval (for example, a timespan measured in days, or a duration measured in hours, minutes, and seconds). The standard also provides a very elaborate and complex method for dealing with date/time arithmetic, specifying the precision of intervals, adjusting for time zone differences, and so on.

As these examples illustrate, the subtle differences in data types among various SQL products lead to some significant differences in SQL statement syntax. They can even cause the same SQL query to produce slightly different results on different database management systems. The widely praised portability of SQL is thus true but only at a general level. An application can be moved from one SQL database to another, and it can be highly portable if it uses only the most mainstream, basic SQL capabilities. However, the subtle variations in SQL implementations mean that data types and SQL statements must almost always be adjusted somewhat if it is to be moved across DBMS brands. The more complex the application, the more likely it is to become dependent on DBMS-specific features and nuances, and the less portable it will become.

Constants

In some SQL statements a numeric, character, or date data value must be expressed in text form. For example, in this INSERT Statement, which adds a salesperson to the database:

INSERT INTO SALESREPS (EMPL NUM, NAME, QUOTA, HIRE DATE, SALES) VALUES (115, ‘Dennis Irving’, 175000.00, ’21-JUN-90′, 0.00)

the value for each column in the newly inserted row is specified in the vALvES clause. Constant data values are also used in expressions, such as in this SEIuECT statement:

SELECT CITY FROM OFFICES

WHERE TARGET > (1.1 * SALES) + 10000.00

The ANSI/ISO SQL standard specifies the format of numeric and string constants, or literals, which represent specific data values. These conventions are followed by most SQL implementations.

Numeric Constants

Integer and decimal constants (also called exact numeric literals) are written as ordinary decimal numbers in SQL statements, with an optional leading plus or minus sign.

21 —375 2000.00 +497500.8778

You must not put a comma between the digits of a numeric constant, and not all SQL dialects allow the leading plus sign, so it’s best to avoid it. For money data, most SQL implementations simply use integer or decimal constants, although some allow the constant to be specified with a currency symbol:

$0.75 $5000.00 $—567.89

Floating point constants (also called approximate numeric /ifera/s) are specified using the E notation commonly found in programming languages such as C and FORTRAN. Here are some valid SQL floating point constants:

1.5E3 —3.14159E1 2.5E—7 0.783926E21

The E is read “times ten to the power of,” so the first constant becomes “1.5 times ten to the third power,” or 1500.

String Constants

The ANSI/ISO standard specifies that SQL constants for character data be enclosed in single quotes (‘…’), as in these examples:

‘Jones, John J.’ ‘New York’ ‘Western’

If a single quote is to be included in the constant text, it is written within the constant as two consecutive single quote characters. Thus this constant value:

‘I can”t’

becomes the seven-character string “I can’t”.

Some SQL implementations, such as SQL Server and Informix, accept string constants enclosed in double quotes (“…”):

“Jones, John J.” “New York” “Western”

Unfortunately, the double quotes pose portability problems with other SQL products, including some unique portability problems with SQL/DS. SQL/DS allows column names containing blanks and other special characters (in violation of the ANSI/ISO standard). When thèse characters appear as names in a SQL statement, they must be enclosed in double quotes. For example, if the NAME COlumn of the sALESRE PS table were called “FUEL NAME” in a SQL/DS database, thÏS SELECT statement would be valid:

SELECT “FULL NAME”, SALES, QUOTA FROM SALESREPS

WHERE “FULL NAME” = ‘Jones, John J.’

The SQL2 standard provides the additional capability to specify string constants from a specific national character set (for example, French or German) or from a user-defined character set. These capabilities have not yet found their way into mainstream SQL implementations.

Date and Time Constants

In SQL products that support date/time data, constant values for dates, times, and time intervals are specified as string constants. The format of these constants varies from one DBMS to the next. Even more variation is introduced by the differences in the way dates and times are written in different countries.

DB2 supports several different international formats for date, time, and timestamp constants, as shown in Table 5-5. The choice of format is made when the DBMS is installed. DB2 also supports durations specified as “special” constants, as in this example:

HIRE DATE + 30 DAYS

Note that a duration can’t be stored in the database, however, because DB2 doesn’t have an explicit DURAT ION data type.

SQL Server also supports date/time data and accepts a variety of different formats for date and time constants. The DBMS automatically accepts all of the alternate formats, and you can intermix them if you like. Here are some examples of legal SQL Server date constants:

March 15, 1990 Mar 15 1990 3/15/1990 3-15-90 1990 MAR 15

and here are some legal time constants:

15:30:25 3:30:25 PM 3:30:25 pm 3 PM

Oracle dates and times are also written as string constants, using this format:

15-MAR-90

You can also use Oracle’s built-in TO DATE ( ) function to convert date constants written

in other formats, as in this example:

SELECT NAME, AGE FROM SALESREPS

WHERE HIRE DATE = TO DATE(‘JUN 14 1989’, ‘MON DD YYYY’)

The SQL2 standard specifies a format for date and time constants, based on the ISO format in Table 5-5, except that time constants are written with colons instead of periods separating the hours, minutes, and seconds.

Table 5-5: IBM SQL Date and Time Formats

Symbolic Constants

In addition to user-supplied constants, the SQL language includes special symbolic constants that return data values maintained by the DBMS itself. For example, in some DBMS brands the symbolic constant TORRENT DATE yields the value of the current date and can be used in queries such as the following, which lists the salespeople whose hire date is still in the future.

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > CURRENT DATE

The SQL1 standard specified only a single symbolic constant (the USER constant described in Chapter 15), but most SQL products provide many more. Generally, a symbolic constant can appear in a SQL statement anywhere that an ordinary constant of the same data type could appear. The SQL2 standard adopted the most useful symbolic constants from current SQL implementations and provides for CURRENT DATE, CURRENT TIME, and cuRRENT TIMESTAMp (note the underscores!) as well as vSER,

SESSION USER,and SYSTEM USER.

Some SQL products, including SQL Server, provide access to system values through built-in functions rather than symbolic constants. The SQL Server version of the preceding query is:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > GETDATE()

Built-in functions are described later in this chapter.

Expressions

Expressions are used in the SQL language to calculate values that are retrieved from a database and to calculate values used in searching the database. For example, this query calculates the sales of each office as a percentage of its target:

SELECT CITY, TARGET, SALES, (SALES/TARGET) * 100 FROM OFFICES

and this query lists the offices whose sales are more than $50,000 over target:

SELECT CITY FROM OFFICES

WHERE SALES > TARGET + 50000.00

The ANSI/ISO SQL standard specifies four arithmetic operations that can be used in expressions: addition (X + Y), subtraction (X — Y), multiplication (X * Y), and division (X / Y). Parentheses can also be used to form more complicated expressions, like this one:

(SALES * 1.05) – (TARGET * .95)

Strictly speaking, the parentheses are not required in this query because the ANSI/ISO standard specifies that multiplication and division have a higher precedence than addition and subtraction. However, you should always use parentheses to make your expressions unambiguous because different SQL dialects may use different rules. The parentheses also increase the readability of the statement and make programmatic SQL statements easier to maintain.

The ANSI/ISO standard also specifies automatic data type conversion from integers to decimal numbers, and from decimal numbers to floating point numbers, as required. You can thus mix these data types in a numeric expression. Many SQL implementations support other operators and allow operations on character and date data. DB2, for example, supports a string concatenation operator, written as two consecutive vertical bar characters (||). If two columns named FIRST NAME and EAST NAME contain the values “Jim” and “Jackson,” then this DB2 expression:

(‘Mr./Mrs. ‘ || FIRST NAME || ‘ ‘ || LAST_NAME)

produces the string “Mr./Mrs. Jim Jackson.” As already mentioned, DB2 also supports addition and subtraction of DATE, T IME, and I IMESTAMP data, for occasions when those operations make sense. This capability has been included in the SQL2 standard.

Built-in Functions

Although the SQL1 standard doesn’t specify them, most SQL implementations include a number of useful built-in functions. These facilities often provide data type conversion facilities. For example, DB2’s built-in MoNTH ( ) and YEAR ( ) functions take a DATE OF TIMESTAMP Value as their input and return an integer that is the month or year portion of the value. This query lists the name and month of hire for each salesperson in the sample database:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

and this one lists all salespeople hired in 1988:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

WHERE YEAR(HIRE_DATE) – 1988

Built-in functions also are often used for data reformatting. Oracle’s built-in To cHAR f ) function, for example, takes a DATE data type and a format specification as its arguments and returns a string containing a formatted version of the date. In the results produced by this query:

SELECT NAME, TO CHAR(HIRE DATE,’DAY MONTH DD, YYYY’) FROM SALESREPS

the hire dates will all have the format “Wednesday June 14, 1989” because of the built-in function.

In general, a built-in function can be specified in a SQL expression anywhere that a constant of the same data type can be specified. The built-in functions supported by popular SQL dialects are too numerous to list here. The IBM SQL dialects include about two dozen built-in functions, Oracle supports a different set of about two dozen built-in
functions, and SQL Server has several dozen. The SQL2 standard incorporated the most useful built-in functions from these implementations, in many cases with slightly different syntax. These functions are summarized in Table 5-6

Symbolic Constants

In addition to user-supplied constants, the SQL language includes special symbolic constants that return data values maintained by the DBMS itself. For example, in some DBMS brands the symbolic constant TORRENT DATE yields the value of the current date and can be used in queries such as the following, which lists the salespeople whose hire date is still in the future.

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > CURRENT DATE

The SQL1 standard specified only a single symbolic constant (the USER constant described in Chapter 15), but most SQL products provide many more. Generally, a symbolic constant can appear in a SQL statement anywhere that an ordinary constant of the same data type could appear. The SQL2 standard adopted the most useful symbolic constants from current SQL implementations and provides for CURRENT DATE, CURRENT TIME, and cuRRENT TIMESTAMp (note the underscores!) as well as vSER,

SESSION USER,and SYSTEM USER.

Some SQL products, including SQL Server, provide access to system values through built-in functions rather than symbolic constants. The SQL Server version of the preceding query is:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > GETDATE()

Built-in functions are described later in this chapter.

Expressions

Expressions are used in the SQL language to calculate values that are retrieved from a database and to calculate values used in searching the database. For example, this query calculates the sales of each office as a percentage of its target:

SELECT CITY, TARGET, SALES, (SALES/TARGET) * 100 FROM OFFICES

and this query lists the offices whose sales are more than $50,000 over target:

SELECT CITY FROM OFFICES

WHERE SALES > TARGET + 50000.00

The ANSI/ISO SQL standard specifies four arithmetic operations that can be used in expressions: addition (X + Y), subtraction (X — Y), multiplication (X * Y), and division (X / Y). Parentheses can also be used to form more complicated expressions, like this one:

(SALES * 1.05) – (TARGET * .95)

Strictly speaking, the parentheses are not required in this query because the ANSI/ISO standard specifies that multiplication and division have a higher precedence than addition and subtraction. However, you should always use parentheses to make your expressions unambiguous because different SQL dialects may use different rules. The parentheses also increase the readability of the statement and make programmatic SQL statements easier to maintain.

The ANSI/ISO standard also specifies automatic data type conversion from integers to decimal numbers, and from decimal numbers to floating point numbers, as required. You can thus mix these data types in a numeric expression. Many SQL implementations support other operators and allow operations on character and date data. DB2, for example, supports a string concatenation operator, written as two consecutive vertical bar characters (||). If two columns named FIRST NAME and EAST NAME contain the values “Jim” and “Jackson,” then this DB2 expression:

(‘Mr./Mrs. ‘ || FIRST NAME || ‘ ‘ || LAST_NAME)

produces the string “Mr./Mrs. Jim Jackson.” As already mentioned, DB2 also supports addition and subtraction of DATE, T IME, and I IMESTAMP data, for occasions when those operations make sense. This capability has been included in the SQL2 standard.

Built-in Functions

Although the SQL1 standard doesn’t specify them, most SQL implementations include a number of useful built-in functions. These facilities often provide data type conversion facilities. For example, DB2’s built-in MoNTH ( ) and YEAR ( ) functions take a DATE OF TIMESTAMP Value as their input and return an integer that is the month or year portion of the value. This query lists the name and month of hire for each salesperson in the sample database:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

and this one lists all salespeople hired in 1988:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

WHERE YEAR(HIRE_DATE) – 1988

Built-in functions also are often used for data reformatting. Oracle’s built-in To cHAR f ) function, for example, takes a DATE data type and a format specification as its arguments and returns a string containing a formatted version of the date. In the results produced by this query:

SELECT NAME, TO CHAR(HIRE DATE,’DAY MONTH DD, YYYY’) FROM SALESREPS

the hire dates will all have the format “Wednesday June 14, 1989” because of the built-in function.

In general, a built-in function can be specified in a SQL expression anywhere that a constant of the same data type can be specified. The built-in functions supported by popular SQL dialects are too numerous to list here. The IBM SQL dialects include about two dozen built-in functions, Oracle supports a different set of about two dozen built-in
functions, and SQL Server has several dozen. The SQL2 standard incorporated the most useful built-in functions from these implementations, in many cases with slightly different syntax. These functions are summarized in Table 5-6

Symbolic Constants

In addition to user-supplied constants, the SQL language includes special symbolic constants that return data values maintained by the DBMS itself. For example, in some DBMS brands the symbolic constant TORRENT DATE yields the value of the current date and can be used in queries such as the following, which lists the salespeople whose hire date is still in the future.

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > CURRENT DATE

The SQL1 standard specified only a single symbolic constant (the USER constant described in Chapter 15), but most SQL products provide many more. Generally, a symbolic constant can appear in a SQL statement anywhere that an ordinary constant of the same data type could appear. The SQL2 standard adopted the most useful symbolic constants from current SQL implementations and provides for CURRENT DATE, CURRENT TIME, and cuRRENT TIMESTAMp (note the underscores!) as well as vSER,

SESSION USER,and SYSTEM USER.

Some SQL products, including SQL Server, provide access to system values through built-in functions rather than symbolic constants. The SQL Server version of the preceding query is:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > GETDATE()

Built-in functions are described later in this chapter.

Expressions

Expressions are used in the SQL language to calculate values that are retrieved from a database and to calculate values used in searching the database. For example, this query calculates the sales of each office as a percentage of its target:

SELECT CITY, TARGET, SALES, (SALES/TARGET) * 100 FROM OFFICES

and this query lists the offices whose sales are more than $50,000 over target:

SELECT CITY FROM OFFICES

WHERE SALES > TARGET + 50000.00

The ANSI/ISO SQL standard specifies four arithmetic operations that can be used in expressions: addition (X + Y), subtraction (X — Y), multiplication (X * Y), and division (X / Y). Parentheses can also be used to form more complicated expressions, like this one:

(SALES * 1.05) – (TARGET * .95)

Strictly speaking, the parentheses are not required in this query because the ANSI/ISO standard specifies that multiplication and division have a higher precedence than addition and subtraction. However, you should always use parentheses to make your expressions unambiguous because different SQL dialects may use different rules. The parentheses also increase the readability of the statement and make programmatic SQL statements easier to maintain.

The ANSI/ISO standard also specifies automatic data type conversion from integers to decimal numbers, and from decimal numbers to floating point numbers, as required. You can thus mix these data types in a numeric expression. Many SQL implementations support other operators and allow operations on character and date data. DB2, for example, supports a string concatenation operator, written as two consecutive vertical bar characters (||). If two columns named FIRST NAME and EAST NAME contain the values “Jim” and “Jackson,” then this DB2 expression:

(‘Mr./Mrs. ‘ || FIRST NAME || ‘ ‘ || LAST_NAME)

produces the string “Mr./Mrs. Jim Jackson.” As already mentioned, DB2 also supports addition and subtraction of DATE, T IME, and I IMESTAMP data, for occasions when those operations make sense. This capability has been included in the SQL2 standard.

Built-in Functions

Although the SQL1 standard doesn’t specify them, most SQL implementations include a number of useful built-in functions. These facilities often provide data type conversion facilities. For example, DB2’s built-in MoNTH ( ) and YEAR ( ) functions take a DATE OF TIMESTAMP Value as their input and return an integer that is the month or year portion of the value. This query lists the name and month of hire for each salesperson in the sample database:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

and this one lists all salespeople hired in 1988:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

WHERE YEAR(HIRE_DATE) – 1988

Built-in functions also are often used for data reformatting. Oracle’s built-in To cHAR f ) function, for example, takes a DATE data type and a format specification as its arguments and returns a string containing a formatted version of the date. In the results produced by this query:

SELECT NAME, TO CHAR(HIRE DATE,’DAY MONTH DD, YYYY’) FROM SALESREPS

the hire dates will all have the format “Wednesday June 14, 1989” because of the built-in function.

In general, a built-in function can be specified in a SQL expression anywhere that a constant of the same data type can be specified. The built-in functions supported by popular SQL dialects are too numerous to list here. The IBM SQL dialects include about two dozen built-in functions, Oracle supports a different set of about two dozen built-in
functions, and SQL Server has several dozen. The SQL2 standard incorporated the most useful built-in functions from these implementations, in many cases with slightly different syntax. These functions are summarized in Table 5-6

Symbolic Constants

In addition to user-supplied constants, the SQL language includes special symbolic constants that return data values maintained by the DBMS itself. For example, in some DBMS brands the symbolic constant TORRENT DATE yields the value of the current date and can be used in queries such as the following, which lists the salespeople whose hire date is still in the future.

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > CURRENT DATE

The SQL1 standard specified only a single symbolic constant (the USER constant described in Chapter 15), but most SQL products provide many more. Generally, a symbolic constant can appear in a SQL statement anywhere that an ordinary constant of the same data type could appear. The SQL2 standard adopted the most useful symbolic constants from current SQL implementations and provides for CURRENT DATE, CURRENT TIME, and cuRRENT TIMESTAMp (note the underscores!) as well as vSER,

SESSION USER,and SYSTEM USER.

Some SQL products, including SQL Server, provide access to system values through built-in functions rather than symbolic constants. The SQL Server version of the preceding query is:

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE HIRE DATE > GETDATE()

Built-in functions are described later in this chapter.

Expressions

Expressions are used in the SQL language to calculate values that are retrieved from a database and to calculate values used in searching the database. For example, this query calculates the sales of each office as a percentage of its target:

SELECT CITY, TARGET, SALES, (SALES/TARGET) * 100 FROM OFFICES

and this query lists the offices whose sales are more than $50,000 over target:

SELECT CITY FROM OFFICES

WHERE SALES > TARGET + 50000.00

The ANSI/ISO SQL standard specifies four arithmetic operations that can be used in expressions: addition (X + Y), subtraction (X — Y), multiplication (X * Y), and division (X / Y). Parentheses can also be used to form more complicated expressions, like this one:

(SALES * 1.05) – (TARGET * .95)

Strictly speaking, the parentheses are not required in this query because the ANSI/ISO standard specifies that multiplication and division have a higher precedence than addition and subtraction. However, you should always use parentheses to make your expressions unambiguous because different SQL dialects may use different rules. The parentheses also increase the readability of the statement and make programmatic SQL statements easier to maintain.

The ANSI/ISO standard also specifies automatic data type conversion from integers to decimal numbers, and from decimal numbers to floating point numbers, as required. You can thus mix these data types in a numeric expression. Many SQL implementations support other operators and allow operations on character and date data. DB2, for example, supports a string concatenation operator, written as two consecutive vertical bar characters (||). If two columns named FIRST NAME and EAST NAME contain the values “Jim” and “Jackson,” then this DB2 expression:

(‘Mr./Mrs. ‘ || FIRST NAME || ‘ ‘ || LAST_NAME)

produces the string “Mr./Mrs. Jim Jackson.” As already mentioned, DB2 also supports addition and subtraction of DATE, T IME, and I IMESTAMP data, for occasions when those operations make sense. This capability has been included in the SQL2 standard.

Built-in Functions

Although the SQL1 standard doesn’t specify them, most SQL implementations include a number of useful built-in functions. These facilities often provide data type conversion facilities. For example, DB2’s built-in MoNTH ( ) and YEAR ( ) functions take a DATE OF TIMESTAMP Value as their input and return an integer that is the month or year portion of the value. This query lists the name and month of hire for each salesperson in the sample database:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

and this one lists all salespeople hired in 1988:

SELECT NAME, MONTH(HIRE DATE) FROM SALESREPS

WHERE YEAR(HIRE_DATE) – 1988

Built-in functions also are often used for data reformatting. Oracle’s built-in To cHAR f ) function, for example, takes a DATE data type and a format specification as its arguments and returns a string containing a formatted version of the date. In the results produced by this query:

SELECT NAME, TO CHAR(HIRE DATE,’DAY MONTH DD, YYYY’) FROM SALESREPS

the hire dates will all have the format “Wednesday June 14, 1989” because of the built-in function.

In general, a built-in function can be specified in a SQL expression anywhere that a constant of the same data type can be specified. The built-in functions supported by popular SQL dialects are too numerous to list here. The IBM SQL dialects include about two dozen built-in functions, Oracle supports a different set of about two dozen built-in
functions, and SQL Server has several dozen. The SQL2 standard incorporated the most useful built-in functions from these implementations, in many cases with slightly different syntax. These functions are summarized in Table 5-6

Missing Data (NVLL Values)

Because a database is usually a model of a real-world situation, certain pieces of data are inevitably missing, unknown, or don’t apply. In the sample database, for example, the QUoIA column in the sALESRE PS table contains the sales goal for each salesperson.

However, the newest salesperson has not yet been assigned a quota; this data is missing for that row of the table. You might be tempted to put a zero in the column for this salesperson, but that would not be an accurate reflection of the situation. The salesperson does not have a zero quota; the quota is just “not yet known.”

Similarly, the MANAGER COlumn in the sALESRE PS table contains the employee number of each salesperson’s manager. But Sam Clark, the Vice President of Sales, has no manager in the sales organization. This column does not apply to Sam. Again, you might think about entering a zero, or a 9999 in the column, but neither of these values would really be the employee number of Sam’s boss. No data value is applicable to this row.

SQL supports missing, unknown, or inapplicable data explicitly, through the concept of a null value. A null value is an indicator that tells SQL (and the user) that the data is missing or not applicable. As a convenience, a missing piece of data is often said to have the value NULL. But the NUmz value is not a real data value like 0, 473.83, or “Sam Clark.” Instead, it’s a signal, or a reminder, that the data value is missing or unknown.

Figure 5-3 shows the contents of the sALESRE PS table. Note that the qUoTA and

REP OFFICE values for Tom Snyder’s row and the mN GTR value for Sam Clark’s row of the table all contain Name Values.

In many situations NvrL values require special handling by the DBMS. For example, if the user requests the sum of the qvoTA Column, how should the DBMS handle the missing data when computing the sum? The answer is given by a set of special rules that govern NvLL value handling in various SQL statements and clauses. Because of these rules, some leading database authorities feel strongly that NvLL values should not be used. Others, including Dr. Codd, have advocated the use of multiple NaLL Values, with distinct indicators for “unknown” and “not applicable” data.

Regardless of the academic debates, NULL values are a well-entrenched part of the ANSI/ISO SQL standard and are supported in virtually all commercial SQL products. They also play an important, practical role in production SQL databases. The special rules that apply to Name values (and the cases where NvLL Values are handled inconsistently by various SQL products) are pointed out in the relevant sections of this book.

Chapter 6: Simple Queries

Overview

In many ways, queries are the heart of the SQL language. The sErECI statement, which is used to express SQL queries, is the most powerful and complex of the SQL statements.

Despite the many options afforded by the sELECI statement, it’s possible to start simply and then work up to more complex queries. This chapter discusses the simplest SQL queries—those that retrieve data from a single table in the database.

TheSELECTStaement

The sELECI statement retrieves data from a database and returns it to you in the form of query results. You have already seen many examples of the sELECT Statement in the quick tour presented in Chapter 2. Here are several more sample queries that retrieve information about sales offices:

List the sales offices with their targets and actual sales.

SELECT CITY, TARGET, SALES FROM OFFICES

CITY               TARGET        SALES

Denver$300,000.00$186,042.00
New York$575,000.00$692,637.00
Chicago$800,000.00$735,042.00
Atlanta$350,000.00$367,911.00
Los Angeles$725,000.00$835,915.00

List the Eastern region sales offices with their targets and sales.

SELECT CITY, TARGET, SALES FROM OFFICES

WHERE REGION=‘Eastern’ 
CITY TARGETSALES
New York $575,000.00$692,637.00
Chicago $800,000.00$735,042.00

Atlanta        $350,000.00   $367,911.00

List Eastern region sales offices whose sales exceed their targets, soded in alphabetical order by cify.

SELECT CITY, TARGET, SALES FROM OFFICES

WHERE REGION = AND SALES > ORDER BY CITY‘Eastern’ TARGET 
CITYTARGETSALES
Atlanta$350,000.00$367,911.00
New York$575,000.00$692,637.00

What are the average target and sales for Eastern region offices?

SELECT AVG(TARGET), AVG(SALES) FROM OFFICES

WHERE REGION = ‘Eastern’ AVG(TARGET)              AVG(SALES)

$575,000.00 $598,530.00

For simple queries, the English language request and the SQL SEIuECT Statement are very similar. When the requests become more complex, more features of the sELECT statement must be used to specify the query precisely.

Figure 6-1 shows the full form of the sELECT Statement, which consists of six clauses. The sELEcT and FRoM clauses of the statement are required. The remaining four clauses are optional. You include them in a sELECT Statement only when you want to use the functions they provide. The following list summarizes the function of each clause:

  • The sELECT clause lists the data items to be retrieved by the sELECT Statement. The

items may be columns from the database, or columns to be calculated by SQL as it performs the query. The sELECI clause is described in later sections of this chapter.

  • The FRoM Clause lists the tables that contain the data to be retrieved by the query. Queries that draw their data from a single table are described in this chapter. More complex queries that combine data from two or more tables are discussed in Chapter 7.
  • The wHERE Clause tells SQL to include only certain rows of data in the query results. A search condition is used to specify the desired rows. The basic uses of the wHERE clause are described later in this chapter. Those that involve subqueries are discussed in Chapter 9.
  • The cRoUP BY clause specifies a summary query. Instead of producing one row of query results for each row of data in the database, a summary query groups together similar rows and then produces one summary row of query results for each group. Summary queries are described in Chapter 8.
  • The H vING clause tells SQL to include only certain groups produced by the GRoUP By Clause in the query results. Like the WHERE clause, it uses a search condition to specify the desired groups. The H vING Clause is described in Chapter 8.
  • The oRDER By clause sorts the query results based on the data in one or more columns. If it is omitted, the query results are not sorted. The oRDER Bz clause is described later in this chapter.

The sEzECT Clause

The sELECT clause that begins each SELECT Statement specifies the data items to be retrieved by the query. The items are usually specified by a select list, a list of select items separated by commas. Each select item in the list generates a single column of query results, in left-to-right order. A select item can be:

  • a column name, identifying a column from the table(s) named in the FRoM clause. When a column name appears as a select item, SQL simply takes the value of that column from each row of the database table and places it in the corresponding row of query results.
  • a constant, specifying that the same constant value is to appear in every row of the query results.
  • a SQL expression, indicating that SQL must calculate the value to be placed into the query results, in the style specified by the expression.

Each type of select item is described later in this chapter.

The zRoM Clause

The FRoM Clause consists of the keyword FROM, followed by a list of table specifications separated by commas. Each table specification identifies a table containing data to be retrieved by the query. These tables are called the source tables of the query (and of the SELECT Statement) because they are the source of all of the data in the query results. All of the queries in this chapter have a single source table, and every FROM Clause contains a single table name.

Query Results

The result of a SQL query is always a table of data, just like the tables in the database. If you type a sELECT Statement using interactive SQL, the DBMS displays the query results in tabular form on your computer screen. If a program sends a query to the DBMS using programmatic SQL, the table of query results is returned to the program. In either case, the query results always have the same tabular, row/column format as the actual tables in the database, as shown in Figure 6-2. Usually the query results will be a table with several columns and several rows. For example, this query produces a table of three columns (because it asks for three items of data) and ten rows (because there are ten salespeople):

List the names, offices, and hire dates of all salespeople.

SELECT NAME, REP_OFFICE, HIRE_DATE FROM SALESREPS

NAME

Bill Adams Mary Jones Sue Smith Sam Clark Bob Smith Dan Roberts Tom Snyder Larry Fitch Paul Cruz

Nancy Angelli

REP OFFICE HIRE DATE

13 12—FEB—88

11 12-OCT-89

21 10—DEC—86

11 14-JUN-88

12 19—MAY—87

12 20-OCT-86 NULL 13—JAN—90 21 12-OCT-89

12 01—MAR—87

22 14-NOV-88

In contrast, the following query produces a single row because only one salesperson has the requested employee number. Even though this single row of query results looks less “tabular” than the multi-row results, SQL still considers it to be a table of three columns and one row.

What are the name, quota, and sales of employee number 107?

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE EMPL NUM = 107

NAME QUOTASALES
NancyAngelli$300,000.00$186,042.00

In some cases the query results can be a single value, as in the following example:

What are the average sales of our salespeople?

SELECT AVG(SALES) FROM SALESREPS

AVG(SALES)

$289,353.20

These query results are still a table, although it’s a very small one consisting of one column and one row.

Finally, it’s possible for a query to produce zero rows of query results, as in this example:

List the name and hire date of anyone with sales over $500,000.

SELECT NAME, HIRE DATE FROM SALESREPS

WHERE SALES > 500000.00 NAME         HIRE DATE

Even in this situation, the query results are still a table. This one is an empty table with two columns and zero rows.

Note that SQL’s support for missing data extends to query results as well. If a data item in the database has a NvZL Value, the NvLL Value appears in the query results when the data item is retrieved. For example, the sALESRE PS table contains NULL values in its ovozA and MANAGER columns. The following query returns these NULL Values in the second and third columns of query results:

List the salespeople, their quotas, and their managers.

SELECT NAME, QUOTA, MANAGER FROM SALESREPS

NAME QUOTAMANAGER
BillAdams$350,000.00104
MaryJones$300,000.00106
SueSmith$350,000.00108
SamClark$275,000.00NULL
BobSmith$200,000.00106
DanRoberts$300,000.00104
TomSnyderNULL101

Larry Fitch

$350,000.00

106

Paul Cruz5275,000.00104
Nancy Angelli$300,000.00108

The fact that a SQL query always produces a table of data is very important. It means that the query results can be stored back into the database as a table. It means that the results of two similar queries can be combined to form a larger table of query results. Finally, it means that the query results can themselves be the target of further queries. A relational database’s tabular structure thus has a very synergistic relationship with the relational query facilities of SQL. Tables can be queried, and queries produce tables.

Simple Queries

The simplest SQL queries request columns of data from a single table in the database. For example, this query requests three columns from the oneICES table:

List the location, region, and sales of each sales office.

SELECT CITY, REGION, SALES FROM OFFICES

CITYREGIONSALES
DenverWestern$186,042.00
New YorkEastern$692,637.00
ChicagoEastern$735,042.00
AtlantaEastern$367,911.00
Los AngelesWestern$835,915.00

The sELECT statement for simple queries like this one includes only the two required clauses. The sELECT Clause names the requested columns; the FRon clause names the table that contains them.

Conceptually, SQL processes the query by going through the table named in the from clause, one row at a time, as shown in Figure 6-3. For each row, SQL takes the values of the columns requested in the select list and produces a single row of query results. The query results thus contain one row of data for each row in the table.

Calculated Columns

In addition to columns whose values come directly from the database, a SQL query can include calculated columns whose values are calculated from the stored data values. To request a calculated column, you specify a SQL expression in the select list. As discussed in Chapter 5, SQL expressions can involve addition, subtraction, multiplication, and division. You can also use parentheses to build more complex expressions. Of course the columns referenced in an arithmetic expression must have a numeric type. If you try to add, subtract, multiply, or divide columns containing text data, SQL will report an error.

This query shows a simple calculated column:

List the city, region, and amount over/under target for each office.

SELECT CITY, REGION, (SALES FROM OFFICES– TARGET)
CITY            REGION(SALES—TARGET)
Denver          Western—$113,958.00
New York        Eastern$117,637.00
Chicago         Eastern—$64,958.00
Atlanta         Eastern$17,911.00
Los Angeles     Western$110,915.00

To process the query, SQL goes through the offices, generating one row of query results for each row of the out ICES table, as shown in Figure 6-4. The first two columns of query results come directly from the oFFICES table. The third column of query results is calculated, row-by-row, using the data values from the current row of the off ICES table.

Here are other examples of queries that use calculated columns:

Show the value of the inventory for each product.

SELECT MFR ID, PRODUCT ID, DESCRIPTION, (QTY ON HAND * PRICE) FROM PRODUCTS

MFR ID PRODUCT ID DESCRIPTION

REI    2A45C        Ratchet Link

(QTY_ON_HAND’PRICE)

$16,590.00

ACI4100YWidgetRemover$68,750.00
QSAXK47Reducer$13,490.00
BIC41672Plate $0.00
IMM779C900-1bBrace$16,875.00
ACI41003Size 3Widget$22,149.00
ACI41004Size 4Widget$16,263.00
BIC41003Handle $1,956.00

Show me the result if I raised each salesperson’s quota by 3 percent of their year-to-date sales.

SELECT NAME, QUOTA, (QUOTA + FROM SALESREPS(.03*SALES))
NAME                   QUOTA(QUOTA+(.03*SALES))
Bill Adams       $350,000.00$361,037.33
Mary Jones       $300,000.00$311,781.75
Sue Smith        $350,000.00$364,221.50
Sam Clark        $275,000.00$ 28 3, 9 9 . 3 6
Bob Smith        $200,000.00$204,277.82
Dan Roberts      $300,000.00$309,170.19
Tom Snyder              NULLNULL
Larry Fitch      $350,000.00$360,855.95
Paul Cruz        $275,000.00$283,603.25
Nancy Angelli    $300,000.00$305,581.26

As mentioned in Chapter 5, many SQL products provide additional arithmetic operations, character string operations, and built-in functions that can be used in SQL expressions. These can appear in select list expressions, as in this DB2 example:

List the name and month and year of hire for each salesperson.

SELECT NAME, MONTH(HIRE_DATE), YEAR(HIRE DATE) FROM SALESREPS

SQL constants can also be used by themselves as items in a select list. This can be useful for producing query results that are easier to read and interpret, as in the example on the bottom of the next page.

List the sales for each city.

SELECT CITY, ‘has sales of’, SALES FROM OFFICES

CITY          HAS SALES OF

Denver        has sales of

New York      has sales of

Chicago       has sales of

Atlanta       has sales of Los Angeles  has sales of

SALES

18 6, 0 4 2 . 0 0

$692,637.00

$735,042.00

$367,911.00

$835,915.00

The query results appear to consist of a separate “sentence” for each office, but they’re

really a table of three columns. The first and third columns contain values from the OFFICES table. The second column always contains the same 12-character text string. This distinction is subtle when the query results are displayed on a screen, but it is crucial in programmatic SQL, when the results are being retrieved into a program and used for calculations.

Selecting All Columns (sELECT  *)

Sometimes it’s convenient to display the contents of all the columns of a table. This can be particularly useful when you first encounter a new database and want to get a quick understanding of its structure and the data it contains. As a convenience, SQL lets you use an asterisk (*) in place of the select list as an abbreviation for “all columns”:

Show me all the data in the oFFECEs table.

SELECT FROM* OFFICES 
OFFICECITYREGIONMGRTARGETSALES
22DenverWestern108$300,000.0018 6, 0 4 2 . 0 0
11New YorkEastern106$575,000.00$692,637.00
12ChicagoEastern104$800,000.007 35, 0 4 2 . 0 0
13AtlantaEastern105$350,000.00$367,911.00
21Los AngelesWestern108$725,000.00$835,915.00

The query results contain all six columns of the oFFICES table, in the same left-to-right order as in the table itself.

The ANSI/ISO SQL standard specifies that a SELECT Statement can have either an all- column selection or a select list, but not both, as shown in Fiqure 6-1. However, many SQL implementations treat the asterisk (*) as just another element of the select list. Thus the query:

SELECT *, (SALES — TARGET) FROM OFFICES

is legal in most commercial SQL dialects (for example in DB2, Oracle, and SQL Server), but it is not permitted by the ANSI/ISO standard.

The all-columns selection is most appropriate when you are using interactive SQL casually. It should be avoided in programmatic SQL, because changes in the database structure can cause a program to fail. For example, suppose the off ICES table were dropped from the database and then re-created with its columns rearranged and a new seventh column added. SQL automatically takes care of the database-related details of such changes, but it cannot modify your application program for you. If your program expects a SELECT • FROM OFFI cEs query to return six columns of query results with certain data types, it will almost certainly stop working when the columns are rearranged and a new one is added.

These difficulties can be avoided if you write the program to request the columns it needs by name. For example, the following query produces the same results as SELECT

FROM OFFICES. It is also immune to changes in the database structure, as long as the named columns continue to exist in the oneICES table:

SELECT OFFICE, CITY, REGION, MGR, TARGET, SALES FROM OFFICES

Duplicate Rows (oz S7INC7)

If a query includes the primary key of a table in its select list, then every row of query results will be unique (because the primary key has a different value in each row). If the primary key is not included in the query results, duplicate rows can occur. For example, suppose you made this request:

List the employee numbers of all sales office managers.

SELECT MGR FROM OFFICES

MGR

108

106

104

105

108

The query results have five rows (one for each office), but two of them are exact duplicates of one another. Why? Because Larry Fitch manages both the Los Angeles and Denver offices, and his employee number (108) appears in both rows of the off ICES table. These query results are probably not exactly what you had in mind. If there are four different managers, you might have expected only four employee numbers in the query results.

You can eliminate duplicate rows of query results by inserting the keyword DI ST INc T in the sELECT statement just before the select list. Here is a version of the previous query that produces the results you want:

List the employee numbers of all sales office managers.

SELECT DISTINCT MGR FROM OFFICES

MGR

104

105

106

108

Conceptually, SQL carries out this query by first generating a full set of query results (five rows) and then eliminating rows that are exact duplicates of one another to form the final query results. The DI sTINcT keyword can be specified regardless of the contents of the SELECT IÍSt (with certain restrictions for summary queries, as described in Chapter 8).

If the DI sTINcT keyword is omitted, SQL does not eliminate duplicate rows. You can also specify the keyword AZL to explicitly indicate that duplicate rows are to be retained, but it is unnecessary since this is the default behavior.

Row Selection (wHERE Clause)

SQL queries that retrieve all rows of a table are useful for database browsing and reports, but for little else. Usually you’ll want to select only some of the rows in a table and include only these rows in the query results. The wHERE Clause is used to specify the rows you want to retrieve. Here are some examples of simple queries that use the wHERE Clause:

Show me the offices where sales exceed target.

SELECT CITY, SALES, TARGET FROM OFFICES

WHERE SALES > TARGET

CITYSALESTARGET
New York$692,637.00$575,000.00
Atlanta$367,911.00$350,000.00
Los Angeles$835,915.00$725,000.00

Show me the name, sales, and quota of employee number 105.

SELECT NAME, SALES, QUOTA FROM SALESREPS

WHERE EMPL NUM = 105

NAME                      SALES             QUOTA Bill Adams           $367,911.00 $350,000.00

Show me the employees managed by Bob Smith (employee 104).

SELECT NAME, SALES FROM SALESREPS

WHERE MANAGER = 104

NAME                SALES

Bill Adams $367,911.00 Dan Roberts $305,673.00 Paul Cruz   $286,775.00

The WHERE Clause consists of the keyword wHERE followed by a search condition that specifies the rows to be retrieved. In the previous query, for example, the search condition is mNAGER                                      10 4. Figure 6-5 shows how the WHERE Clause works.

Conceptually, SQL goes through each row of the sALESRE PS table, one-by-one, and applies the search condition to the row. When a column name appears in the search condition (such as the MANAGER column in this example), SQL uses the value of the column in the current row. For each row, the search condition can produce one of three results:

V

  • If the search condition is TIME, the row is included in the query results. For example, the row for Bill Adams has the correct MANAGER Value and is included.

If the search condition is FALSE, the row is excluded from the query results. For example, the row for Sue Smith has the wrong MANAGER value and is excluded.

  • If the search condition has a NvLL (unknown) value, the row is excluded from the query results. For example, the row for Sam Clark has el XULL Value for the MANAGER column and is excluded.

Figure 6-6 shows another way to think about the role of the search condition in the WHERE clause. Basically, the search condition acts as a filter for rows of the table. Rows that satisfy the search condition pass through the filter and become part of the query results. Rows that do not satisfy the search condition are trapped by the filter and excluded from the query results.

  • If the search condition is TIME, the row is included in the query results. For example, the row for Bill Adams has the correct MANAGER Value and is included.

If the search condition is FALSE, the row is excluded from the query results. For example, the row for Sue Smith has the wrong MANAGER value and is excluded.

  • If the search condition has a NvLL (unknown) value, the row is excluded from the query results. For example, the row for Sam Clark has el XULL Value for the MANAGER column and is excluded.

Figure 6-6 shows another way to think about the role of the search condition in the WHERE clause. Basically, the search condition acts as a filter for rows of the table. Rows that satisfy the search condition pass through the filter and become part of the query results. Rows that do not satisfy the search condition are trapped by the filter and excluded from the query results.

Search Conditions

SQL offers a rich set of search conditions that allow you to specify many different kinds of queries efficiently and naturally. Five basic search conditions (called predicates in the ANSI/ISO standard) are summarized here and are described in the sections that follow:

  • Comparison test. Compares the value of one expression to the value of another expression. Use this test to select offices in the Eastern region, or salespeople whose sales are above their quotas.
  • Range test. Tests whether the value of an expression falls within a specified range of values. Use this test to find salespeople whose sales are between $100,000 and

$500,000.

  • Set membership test. Checks whether the value of an expression matches one of a set of values. Use this test to select offices located in New York, Chicago, or Los Angeles.
  • Pattern matching test. Checks whether the value of a column containing string data matches a specified pattern. Use this test to select customers whose names start with the letter “E.”
  • Null value test. Checks whether a column has ml NiZZ (unknown) value. Use this test to find the salespeople who have not yet been assigned to a manager.

Comparison Test (=, <>, <, <=, >, >=)

The most common search condition used in a SQL query is a comparison test. In a comparison test, SQL computes and compares the values of two SQL expressions for each row of data. The expressions can be as simple as a column name or a constant, or they can be more complex arithmetic expressions. SQL offers six different ways of comparing the two expressions, as shown in Figure 6-7. Here are some examples of typical comparison tests:

The simple search conditions described in the preceding sections return a value of TRUE, FALSE, or NULL when applied to a row of data. Using the rules of logic, you can combine these simple SQL search conditions to form more complex ones, as shown in Figure 6-

12. Note that the search conditions combined with AND, OR, and NoT may themselves be

compound search conditions.

The keyword oR is used to combine two search conditions when one or the other (or both) must be true:

Find salespeople who are under quota or with sales under 8300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

 OR SALES300000.00 
NAME  QUOTASALES
SamClark $275,000.00$299,912.00
BobSmith $200,000.00$142,594.00
TomSnyder NULL$75,985.00
Paul Cruz$275,000.00$286,775.00
Nancy Angelli$300,000.00$186,042.00

You can also use the keyword AND to combine two search conditions that must both be true:

Find salespeople who are under quota and with sales under $300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND SALES300000.00 
NAME QUOTASALES
Bob Smith $200,000.00$142,594.00
Nancy Angelli $300,000.00$186,042.00

Finally, you can use the keyword Not to select rows where a search condition is false:

Find all salespeople who are under quota, but whose sales are not under $150,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND NOT SALES < 150000.00

NAME                  QUOTA        SALES

Nancy Angelli   $300,000.00 $186,042.00

Using the logical AND, or, and NoT keywords and parentheses to group the search criteria, you can build very complex search criteria, such as the one in this query:

Find all salespeople who either: (a) work in Denver, New York, or Chicago, or (b) have no manager and were hired since June 1988; or (c) are over quota, but have sales of

$600,000 or less.

SELECT NAME FROM SALESREPS

WHERE (REP OFFICE IN (22, 11, 12))

OR (MANAGER IS NULL AND HIRE DATE >= ’01-JUN-88′) OR (SALES > QUOTA AND NOT SALES > 600000.00)

Exactly why you might want to see this particular list of names is a mystery, but the example does illustrate a reasonably complex query.

As with simple search conditions, NULL Values influence the outcome of compound search conditions, and the results are subtle. In particular, the result of (Niko OR TRUE) ÏS TRUE, not NvLL as you might expect. Tables 6-1, 6-2, and 6-3 specify truth tables for AND, OR, and NoT, respectively, and show the impact of NvLL values.

Table 6-1: no    Truth Table

TRUE FALSE NULL

TRUE

TRUE FALSE NULL

FALSE

FALSE FALSE FALSE

NULL

NULL FALSE NULL

Table 6-2: ou Truth Table

OR

TRUE FALSE NULL

TRUE

TRUE TRUE TRUE

FALSE

TRUE FALSE NULL

NULL

TRUE NULL NULL

Table 6-3: iron’ Truth Table

NOT          TRUE

FALSE

FALSE

TRUE

NULL

NULL

When more than two search conditions are combined with AND, OR, and NoT, the ANSI/ISO standard specifies that NOT has the highest precedence, followed by AND and then oR. To ensure portability, it’s always a good idea to use parentheses and remove any possible ambiguity.

The SQL2 standard adds another logical search condition, the IS test, to the logic provided by AND, On, and NoT. Figure 6-13 shows the syntax of the I s test, w

The keyword oR is used to combine two search conditions when one or the other (or both) must be true:

Find salespeople who are under quota or with sales under 8300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

 OR SALES300000.00 
NAME  QUOTASALES
SamClark $275,000.00$299,912.00
BobSmith $200,000.00$142,594.00
TomSnyder NULL$75,985.00
Paul Cruz$275,000.00$286,775.00
Nancy Angelli$300,000.00$186,042.00

You can also use the keyword AND to combine two search conditions that must both be true:

Find salespeople who are under quota and with sales under $300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND SALES300000.00 
NAME QUOTASALES
Bob Smith $200,000.00$142,594.00
Nancy Angelli $300,000.00$186,042.00

Finally, you can use the keyword Not to select rows where a search condition is false:

Find all salespeople who are under quota, but whose sales are not under $150,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND NOT SALES < 150000.00

NAME                  QUOTA        SALES

Nancy Angelli   $300,000.00 $186,042.00

Using the logical AND, or, and NoT keywords and parentheses to group the search criteria, you can build very complex search criteria, such as the one in this query:

Find all salespeople who either: (a) work in Denver, New York, or Chicago, or (b) have no manager and were hired since June 1988; or (c) are over quota, but have sales of

$600,000 or less.

SELECT NAME FROM SALESREPS

WHERE (REP OFFICE IN (22, 11, 12))

OR (MANAGER IS NULL AND HIRE DATE >= ’01-JUN-88′) OR (SALES > QUOTA AND NOT SALES > 600000.00)

Exactly why you might want to see this particular list of names is a mystery, but the example does illustrate a reasonably complex query.

As with simple search conditions, NULL Values influence the outcome of compound search conditions, and the results are subtle. In particular, the result of (Niko OR TRUE) ÏS TRUE, not NvLL as you might expect. Tables 6-1, 6-2, and 6-3 specify truth tables for AND, OR, and NoT, respectively, and show the impact of NvLL values.

Table 6-1: no    Truth Table

TRUE FALSE NULL

TRUE

TRUE FALSE NULL

FALSE

FALSE FALSE FALSE

NULL

NULL FALSE NULL

Table 6-2: ou Truth Table

OR

TRUE FALSE NULL

TRUE

TRUE TRUE TRUE

FALSE

TRUE FALSE NULL

NULL

TRUE NULL NULL

Table 6-3: iron’ Truth Table

NOT          TRUE

FALSE

FALSE

TRUE

NULL

NULL

When more than two search conditions are combined with AND, OR, and NoT, the ANSI/ISO standard specifies that NOT has the highest precedence, followed by AND and then oR. To ensure portability, it’s always a good idea to use parentheses and remove any possible ambiguity.

The SQL2 standard adds another logical search condition, the IS test, to the logic provided by AND, On, and NoT. Figure 6-13 shows the syntax of the I s test, which checks to see whether the logical value of an expression or comparison test iS TRUE, FAIuSE, or UNKNOWN(NULL)

The keyword oR is used to combine two search conditions when one or the other (or both) must be true:

Find salespeople who are under quota or with sales under 8300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

 OR SALES300000.00 
NAME  QUOTASALES
SamClark $275,000.00$299,912.00
BobSmith $200,000.00$142,594.00
TomSnyder NULL$75,985.00
Paul Cruz$275,000.00$286,775.00
Nancy Angelli$300,000.00$186,042.00

You can also use the keyword AND to combine two search conditions that must both be true:

Find salespeople who are under quota and with sales under $300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND SALES300000.00 
NAME QUOTASALES
Bob Smith $200,000.00$142,594.00
Nancy Angelli $300,000.00$186,042.00

Finally, you can use the keyword Not to select rows where a search condition is false:

Find all salespeople who are under quota, but whose sales are not under $150,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND NOT SALES < 150000.00

NAME                  QUOTA        SALES

Nancy Angelli   $300,000.00 $186,042.00

Using the logical AND, or, and NoT keywords and parentheses to group the search criteria, you can build very complex search criteria, such as the one in this query:

Find all salespeople who either: (a) work in Denver, New York, or Chicago, or (b) have no manager and were hired since June 1988; or (c) are over quota, but have sales of

$600,000 or less.

SELECT NAME FROM SALESREPS

WHERE (REP OFFICE IN (22, 11, 12))

OR (MANAGER IS NULL AND HIRE DATE >= ’01-JUN-88′) OR (SALES > QUOTA AND NOT SALES > 600000.00)

Exactly why you might want to see this particular list of names is a mystery, but the example does illustrate a reasonably complex query.

As with simple search conditions, NULL Values influence the outcome of compound search conditions, and the results are subtle. In particular, the result of (Niko OR TRUE) ÏS TRUE, not NvLL as you might expect. Tables 6-1, 6-2, and 6-3 specify truth tables for AND, OR, and NoT, respectively, and show the impact of NvLL values.

Table 6-1: no    Truth Table

TRUE FALSE NULL

TRUE

TRUE FALSE NULL

FALSE

FALSE FALSE FALSE

NULL

NULL FALSE NULL

Table 6-2: ou Truth Table

OR

TRUE FALSE NULL

TRUE

TRUE TRUE TRUE

FALSE

TRUE FALSE NULL

NULL

TRUE NULL NULL

Table 6-3: iron’ Truth Table

NOT          TRUE

FALSE

FALSE

TRUE

NULL

NULL

When more than two search conditions are combined with AND, OR, and NoT, the ANSI/ISO standard specifies that NOT has the highest precedence, followed by AND and then oR. To ensure portability, it’s always a good idea to use parentheses and remove any possible ambiguity.

The SQL2 standard adds another logical search condition, the IS test, to the logic provided by AND, On, and NoT. Figure 6-13 shows the syntax of the I s test, which checks to see whether the logical value of an expression or comparison test iS TRUE, FAIuSE, or UNKNOWN(NULL)

The keyword oR is used to combine two search conditions when one or the other (or both) must be true:

Find salespeople who are under quota or with sales under 8300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

 OR SALES300000.00 
NAME  QUOTASALES
SamClark $275,000.00$299,912.00
BobSmith $200,000.00$142,594.00
TomSnyder NULL$75,985.00
Paul Cruz$275,000.00$286,775.00
Nancy Angelli$300,000.00$186,042.00

You can also use the keyword AND to combine two search conditions that must both be true:

Find salespeople who are under quota and with sales under $300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND SALES300000.00 
NAME QUOTASALES
Bob Smith $200,000.00$142,594.00
Nancy Angelli $300,000.00$186,042.00

Finally, you can use the keyword Not to select rows where a search condition is false:

Find all salespeople who are under quota, but whose sales are not under $150,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND NOT SALES < 150000.00

NAME                  QUOTA        SALES

Nancy Angelli   $300,000.00 $186,042.00

Using the logical AND, or, and NoT keywords and parentheses to group the search criteria, you can build very complex search criteria, such as the one in this query:

Find all salespeople who either: (a) work in Denver, New York, or Chicago, or (b) have no manager and were hired since June 1988; or (c) are over quota, but have sales of

$600,000 or less.

SELECT NAME FROM SALESREPS

WHERE (REP OFFICE IN (22, 11, 12))

OR (MANAGER IS NULL AND HIRE DATE >= ’01-JUN-88′) OR (SALES > QUOTA AND NOT SALES > 600000.00)

Exactly why you might want to see this particular list of names is a mystery, but the example does illustrate a reasonably complex query.

As with simple search conditions, NULL Values influence the outcome of compound search conditions, and the results are subtle. In particular, the result of (Niko OR TRUE) ÏS TRUE, not NvLL as you might expect. Tables 6-1, 6-2, and 6-3 specify truth tables for AND, OR, and NoT, respectively, and show the impact of NvLL values.

Table 6-1: no    Truth Table

TRUE FALSE NULL

TRUE

TRUE FALSE NULL

FALSE

FALSE FALSE FALSE

NULL

NULL FALSE NULL

Table 6-2: ou Truth Table

OR

TRUE FALSE NULL

TRUE

TRUE TRUE TRUE

FALSE

TRUE FALSE NULL

NULL

TRUE NULL NULL

Table 6-3: iron’ Truth Table

NOT          TRUE

FALSE

FALSE

TRUE

NULL

NULL

When more than two search conditions are combined with AND, OR, and NoT, the ANSI/ISO standard specifies that NOT has the highest precedence, followed by AND and then oR. To ensure portability, it’s always a good idea to use parentheses and remove any possible ambiguity.

The SQL2 standard adds another logical search condition, the IS test, to the logic provided by AND, On, and NoT. Figure 6-13 shows the syntax of the I s test, which checks to see whether the logical value of an expression or comparison test iS TRUE, FAIuSE, or UNKNOWN(NULL)

The keyword oR is used to combine two search conditions when one or the other (or both) must be true:

Find salespeople who are under quota or with sales under 8300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

 OR SALES300000.00 
NAME  QUOTASALES
SamClark $275,000.00$299,912.00
BobSmith $200,000.00$142,594.00
TomSnyder NULL$75,985.00
Paul Cruz$275,000.00$286,775.00
Nancy Angelli$300,000.00$186,042.00

You can also use the keyword AND to combine two search conditions that must both be true:

Find salespeople who are under quota and with sales under $300,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND SALES300000.00 
NAME QUOTASALES
Bob Smith $200,000.00$142,594.00
Nancy Angelli $300,000.00$186,042.00

Finally, you can use the keyword Not to select rows where a search condition is false:

Find all salespeople who are under quota, but whose sales are not under $150,000.

SELECT NAME, QUOTA, SALES FROM SALESREPS

WHERE SALES < QUOTA

AND NOT SALES < 150000.00

NAME                  QUOTA        SALES

Nancy Angelli   $300,000.00 $186,042.00

Using the logical AND, or, and NoT keywords and parentheses to group the search criteria, you can build very complex search criteria, such as the one in this query:

Find all salespeople who either: (a) work in Denver, New York, or Chicago, or (b) have no manager and were hired since June 1988; or (c) are over quota, but have sales of

$600,000 or less.

SELECT NAME FROM SALESREPS

WHERE (REP OFFICE IN (22, 11, 12))

OR (MANAGER IS NULL AND HIRE DATE >= ’01-JUN-88′) OR (SALES > QUOTA AND NOT SALES > 600000.00)

Exactly why you might want to see this particular list of names is a mystery, but the example does illustrate a reasonably complex query.

As with simple search conditions, NULL Values influence the outcome of compound search conditions, and the results are subtle. In particular, the result of (Niko OR TRUE) ÏS TRUE, not NvLL as you might expect. Tables 6-1, 6-2, and 6-3 specify truth tables for AND, OR, and NoT, respectively, and show the impact of NvLL values.

Table 6-1: no    Truth Table

TRUE FALSE NULL

TRUE

TRUE FALSE NULL

FALSE

FALSE FALSE FALSE

NULL

NULL FALSE NULL

Table 6-2: ou Truth Table

OR

TRUE FALSE NULL

TRUE

TRUE TRUE TRUE

FALSE

TRUE FALSE NULL

NULL

TRUE NULL NULL

Table 6-3: iron’ Truth Table

NOT          TRUE

FALSE

FALSE

TRUE

NULL

NULL

When more than two search conditions are combined with AND, OR, and NoT, the ANSI/ISO standard specifies that NOT has the highest precedence, followed by AND and then oR. To ensure portability, it’s always a good idea to use parentheses and remove any possible ambiguity.

The SQL2 standard adds another logical search condition, the IS test, to the logic provided by AND, On, and NoT. Figure 6-13 shows the syntax of the I s test, which checks to see whether the logical value of an expression or comparison test iS TRUE, FAIuSE, or UNKNOWN(NULL)

hich checks to see whether the logical value of an expression or comparison test iS TRUE, FAIuSE, or UNKNOWN(NULL)

For example, the IS test:

((SALES – QUOTA) > 10000.00) IS UNKNOWN

can be used to find rows where the comparison cannot be done because either sALES Or

QUOTA has a Name value. Similarly, the I s test:

((SALES — QUOTA) > 10000.00) IS FALSE

will select rows where sALEs are not significantly above QUoTA. /\S this example shows, the I s test doesn’t really add to the expressive power of SQL, since the test could just as easily have been written:

NOT ((SALES – QUOTA) > 10000.00)

For maximum portability, it’s a good idea to avoid the tests and write the expressions using

only AND, OR, and NoT. It’s not always possible to avoid the I s vNRNOuN form of the test.

Sorting Query Results (ORDER BY Clause)

Like the rows of a table in the database, the rows of query results are not arranged in any particular order. You can ask SQL to sort the results of a query by including the oRDER By Clause in the sELEC+ statement. The oRDER By clause, shown in Figure 6-14, consists of the keywords oRDER By, followed by a list of sort specifications separated by

commas. For example, the results of this query are sorted on two columns, REGIoN and

CI TY:

Show the sales for each office, soded in alphabetical order by region, and within each region by city.

SELECT CITY, REGION, SALES FROM OFFICES

ORDER BY REGION, CITY 
CITY         REGIONSALES
Atlanta      Eastern$367,911.00
Chicago      Eastern$735,042.00
New York     Eastern$692,637.00
Denver       Western$186,042.00
Los Angeles Western$835,915.00

The first sort specification (REGION) is the major sort key; those that follow (CITY, in this case) are progressively more minor sort keys, used as “tie breakers” when two rows of query results have the same values for the more major keys. Using the oRDER BY clause, you can request sorting in an ascending or descending sequence, and you can sort on any item in the select list of the query.

By default, SQL sorts data in ascending sequence. To request sorting in descending sequence, the keyword DESC is included in the sort specification, as in the next example.

List the offices, sorted in descending order by sales, so that the offices with the largest sales appear first.

SELECT CITY, REGION, SALES FROM OFFICES

ORDER BY SALES DESC

CITYREGIONSALES
Los AngelesWestern$835,915.00
ChicagoEastern$735,042.00
New YorkEastern$692,637.00
AtlantaEastern$367,911.00
DenverWestern$186,042.00

As indicated in Figure 6-14, you can also use the keyword Asc to specify an ascending sort, but because that’s the default sorting sequence, the keyword is usually omitted.

If the column of query results to be used for sorting is a calculated column, it has no

column name to be used in a sort specification. In this case, you must specify a column number instead of a column name, as in this example:

List the offices, sorted in descending order by sales performance, so that the offices with the best performance appear first.

SELECT CITY, REGION, (SALES – TARGET) FROM OFFICES

ORDER BY 3 DESC

CITY         REGION    (SALES-TARGET)

New York Eastern Los Angeles Western Atlanta   Eastern

Chicago   Eastern

Denver    Western

$117,637.00

$110,915.00

$17,911.00

—$64,958.00

—$113,958.00

These query results are sorted on the third column, which is the calculated difference between the sALEs and TARGET for each office. By combining column numbers, column names, ascending sorts, and descending sorts, you can specify quite complex sorting of the query results, as in the following final example:

List the offices, sorted in alphabetical order by region, and within each region in descending order by sales performance.

SELECT CITY, REGION, (SALES – TARGET) FROM OFFICES

ORDER BY REGION ASC, 3 DESC

CITY         REGION    (SALES-TARGET)

New York   Eastern

Atlanta   Eastern

Chicago Eastern Los Angeles Western Denver    Western

$117,637.00

$17,911.00

—$64,958.00

$110,915.00

—$113,958.00

The SQL2 standard allows you to control the sorting order used by the DBMS for each sort key. This can be important when working with international character sets or to insure portability between ASCII and EBCDIC character set systems. However, this area of the SQL2 specification is quite complex, and in practice many SQL implementations either ignore sorting sequence issues or use their own proprietary scheme for user control of the sorting sequence.

Rules for Single-Table Query Processing

Single-table queries are generally simple, and it’s usually easy to understand the meaning of a query just by reading the SELECT Statement. As queries become more complex, however, it’s important to have a more precise “definition” of the query results that will be produced by a given sELECT Statement. The following steps describe the procedure for generating the results of a SQL query that includes the clauses described in this chapter.

As the next steps show, the query results produced by a sEzECI statement are specified by applying each of its clauses, one-by-one. The FRoM Clause is applied first (selecting

the table containing data to be retrieved). The wHERE clause is applied next (selecting specific rows from the table). The sELECT clause is applied next (generating the specific columns of query results and eliminating duplicate rows, if requested). Finally, the oRDER BY clause is applied to sort the query results.

To generate the query results for a select statement follow thèse steps:

  1. Start with the table named in the 7RoM Clause.
  • If there is a WHERE Clause, apply its search condition to each row of the table, retaining those rows for which the search condition is IRuE, and discarding those rows for which it iS FALsE or NULL.
  • For each remaining row, calculate the value of each item in the select list to produce a single row of query results. For each column reference, use the value of the column in the current row.
  • If SELEC TED DI STINCT is specified, eliminate any duplicate rows of query results

that were produced.

  • If there is an oRDER Bc Clause, sort the query results as specified.

The rows generated by this procedure comprise the query results.

These “rules” for SQL query processing will be expanded several times in the next three chapters to include the remaining clauses of the sELECT Statement.

Combining Query Results (\/NZON) *

Occasionally, it’s convenient to combine the results of two or more queries into a single table of query results. SQL supports this capability through the UNIoN feature of the SELECT statement. Figure 6-15 illustrates how the UNIoN operation can be used to satisfy the following request:

List all the products where the price of the product exceeds $2,000 or where more than

$30,000 of the product has been ordered in a single order.

The first part of the request can be satisfied with the top query in the figure:

List all the products whose price exceeds 82,000.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 MFR ID PRODUCT ID

ACI REI ACI REI

4100Y

2A44L

4100Z

2A44R

Similarly, the second part of the request can be satisfied with the bottom query in the

figure:

List all the products where more than $30,000 of the product has been ordered in a single order.

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00 MFR PRODUCT

IMM 775C

REI 2A44L

REI 2A44R

As shown in Fiqure 6-15, the uNIoN operation produces a single table of query results that combines the rows of the top query results with the rows of the bottom query results. The sELECI statement that specifies the UNIoN operation looks like this:

List all the products where the price of the product exceeds $2,000 or where more than

$30,000 of the product has been ordered in a single order.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00

ACI    4100Y

ACI    4100Z

IMM    775C

REI    2A44L

REI    2A44R

There are severe restrictions on the tables that can be combined by a vNIoN operation:

  • The two tables must contain the same number of columns.
  • The data type of each column in the first table must be the same as the data type of

the corresponding column in the second table.

Neither of the two tables can be sorted with the oRDER By Clause. However, the combined query results can be sorted, as described in the following section.

Note that the column names of the two queries combined by a UNIoN do not have to be identical. In the preceding example, the first table of query results has columns named MFR ID and PRODUCT ID, While the second table of query results has columns named MFR and PRODUCT. Because the columns in the two tables can have different names, the columns of query results produced by the UNIoN operation are unnamed.

The ANSI/ISO SQL standard specifies a further restriction on a sELECI statement that participates in a UNION. It permits only column names or an “all columns” specification (SELECT •) in the select list and prohibits expressions in the select list. Most commercial SQL implementations relax this restriction and permit simple expressions in the select list. However, many SQL implementations do not allow the sELECI statements to include the cRoUP BE OF HAVING clauses, and some do not allow column functions in the select list (prohibiting summary queries as described in Chapter 8). In fact, some SQL implementations (including SQL Server) do not support the vNIoN operation at all.

Unions and Duplicate Rows *

Because the vNIoN operation combines the rows from two sets of query results, it would tend to produce query results containing duplicate rows. For example, in the query of Fiqure 6-15, product REI-2A44L sells for $4,500.00, so it appears in the top set of query results. There is also an order for $31,500.00 worth of this product in the ORDERS table, so it also appears in the bottom set of query results. By default, the UNIoN operation eliminates duplicate rows as part of its processing. Thus, the combined set of query results contains only o/?e row for product REI-2A44L.

If you want to retain duplicate rows in a vNIoN operation, you can specify the rr keyword immediately following the word vNION.” This form of the query produces two duplicate rows for product REI-2A44L:

List all the products where the price of the product exceeds 82,000 or where more than

$30,000 of the product has been ordered in a single order.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION ALL

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00

ACI REI4100Y 2A44L
ACI4100Z
REI2A44R
IMM775C
REI2A44L
REI2A44R

Note that the default duplicate row handling for the UNIoN operation and for the simple SELECT statement is exactly opposite. For the sELECT Statement, sEIuECT Alum (duplicates retained) is the default. To eliminate duplicate rows, you must explicitly

specify SELECT DIST INCI. For the UNIoN operation, UNION (duplicates eliminated) is the default. To retain duplicate rows, you must explicitly specify vNIoN ANIu.

Database experts have criticized the handling of duplicate rows in SQL and point to this inconsistency as an example of the problems. The reason for the inconsistency is that the SQL defaults were chosen to produce the correct behavior most of the time:

° In practice, most simple sELECI statements do not produce duplicate rows, so the default is no duplicate elimination.

  • In practice, most vNIoN operations would produce unwanted duplicate rows, so the default is duplicate elimination.

Eliminating duplicate rows from query results is a very time-consuming process, especially if the query results contain a large number of rows. If you know, based on the individual queries involved, that a 0NIoN operation cannot produce duplicate rows, you should specifically use the UNION Lr operation because the query will execute much more quickly.

Unions and Sorting *

The oRDER Bv clause cannot appear in either of the two sE£EcT statements cOmbined by a vNIoN operation. It wouldn’t make much sense to sort the two sets of query results anyway, because they are fed directly into the UNION operation and are never visible to the user. However, the combined set of query results produced by the vNIoN operation can be sorted by specifying an oRDER Bz clause after the second sEIuECI Statement. Since the columns produced by the UNIoN operation are not named, the oRDER BY clause must specify the columns by column number.

Here is the same products query as that shown in Fiqure 6-15, with the query results sorted by manufacturer and product number:

List all the products where the price of the product exceeds 82,000 or where more than

$30,000 of the product has been ordered in a single order, soded by manufacturer and product number.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00 ORDER BY 1, 2

ACI    4100Y

ACI    4100Z

IMM    775C

REI    2A44L

REI    2A44R

Multiple uxIONs *

The UNIoN operation can be used repeatedly to combine three or more sets of query results, as shown in Figure 6-16. The union of Table B and Table C in the figure produces a single, combined table. This table is then combined with Table A in another

UNIoN operation. The query in the figure is written this way:

List all the products where the price of the product exceeds $2,000 or where more than

$30,000 of the product has been ordered in a single order.

The first part of the request can be satisfied with the top query in the figure:

List all the products whose price exceeds 82,000.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 MFR ID PRODUCT ID

ACI REI ACI REI

4100Y

2A44L

4100Z

2A44R

Similarly, the second part of the request can be satisfied with the bottom query in the

figure:

List all the products where more than $30,000 of the product has been ordered in a single order.

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00 MFR PRODUCT

IMM 775C

REI 2A44L

REI 2A44R

As shown in Fiqure 6-15, the uNIoN operation produces a single table of query results that combines the rows of the top query results with the rows of the bottom query results. The sELECI statement that specifies the UNIoN operation looks like this:

List all the products where the price of the product exceeds $2,000 or where more than

$30,000 of the product has been ordered in a single order.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00

ACI    4100Y

ACI    4100Z

IMM    775C

REI    2A44L

REI    2A44R

There are severe restrictions on the tables that can be combined by a vNIoN operation:

  • The two tables must contain the same number of columns.
  • The data type of each column in the first table must be the same as the data type of

the corresponding column in the second table.

Neither of the two tables can be sorted with the oRDER By Clause. However, the combined query results can be sorted, as described in the following section.

Note that the column names of the two queries combined by a UNIoN do not have to be identical. In the preceding example, the first table of query results has columns named MFR ID and PRODUCT ID, While the second table of query results has columns named MFR and PRODUCT. Because the columns in the two tables can have different names, the columns of query results produced by the UNIoN operation are unnamed.

The ANSI/ISO SQL standard specifies a further restriction on a sELECI statement that participates in a UNION. It permits only column names or an “all columns” specification (SELECT •) in the select list and prohibits expressions in the select list. Most commercial SQL implementations relax this restriction and permit simple expressions in the select list. However, many SQL implementations do not allow the sELECI statements to include the cRoUP BE OF HAVING clauses, and some do not allow column functions in the select list (prohibiting summary queries as described in Chapter 8). In fact, some SQL implementations (including SQL Server) do not support the vNIoN operation at all.

Unions and Duplicate Rows *

Because the vNIoN operation combines the rows from two sets of query results, it would tend to produce query results containing duplicate rows. For example, in the query of Fiqure 6-15, product REI-2A44L sells for $4,500.00, so it appears in the top set of query results. There is also an order for $31,500.00 worth of this product in the ORDERS table, so it also appears in the bottom set of query results. By default, the UNIoN operation eliminates duplicate rows as part of its processing. Thus, the combined set of query results contains only o/?e row for product REI-2A44L.

If you want to retain duplicate rows in a vNIoN operation, you can specify the rr keyword immediately following the word vNION.” This form of the query produces two duplicate rows for product REI-2A44L:

List all the products where the price of the product exceeds 82,000 or where more than

$30,000 of the product has been ordered in a single order.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION ALL

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00

ACI REI4100Y 2A44L
ACI4100Z
REI2A44R
IMM775C
REI2A44L
REI2A44R

Note that the default duplicate row handling for the UNIoN operation and for the simple SELECT statement is exactly opposite. For the sELECT Statement, sEIuECT Alum (duplicates retained) is the default. To eliminate duplicate rows, you must explicitly

specify SELECT DIST INCI. For the UNIoN operation, UNION (duplicates eliminated) is the default. To retain duplicate rows, you must explicitly specify vNIoN ANIu.

Database experts have criticized the handling of duplicate rows in SQL and point to this inconsistency as an example of the problems. The reason for the inconsistency is that the SQL defaults were chosen to produce the correct behavior most of the time:

° In practice, most simple sELECI statements do not produce duplicate rows, so the default is no duplicate elimination.

  • In practice, most vNIoN operations would produce unwanted duplicate rows, so the default is duplicate elimination.

Eliminating duplicate rows from query results is a very time-consuming process, especially if the query results contain a large number of rows. If you know, based on the individual queries involved, that a 0NIoN operation cannot produce duplicate rows, you should specifically use the UNION Lr operation because the query will execute much more quickly.

Unions and Sorting *

The oRDER Bv clause cannot appear in either of the two sE£EcT statements cOmbined by a vNIoN operation. It wouldn’t make much sense to sort the two sets of query results anyway, because they are fed directly into the UNION operation and are never visible to the user. However, the combined set of query results produced by the vNIoN operation can be sorted by specifying an oRDER Bz clause after the second sEIuECI Statement. Since the columns produced by the UNIoN operation are not named, the oRDER BY clause must specify the columns by column number.

Here is the same products query as that shown in Fiqure 6-15, with the query results sorted by manufacturer and product number:

List all the products where the price of the product exceeds 82,000 or where more than

$30,000 of the product has been ordered in a single order, soded by manufacturer and product number.

SELECT MFR ID, PRODUCT ID FROM PRODUCTS

WHERE PRICE > 2000.00 UNION

SELECT DISTINCT MFR, PRODUCT FROM ORDERS

WHERE AMOUNT > 30000.00 ORDER BY 1, 2

ACI    4100Y

ACI    4100Z

IMM    775C

REI    2A44L

REI    2A44R

Multiple uxIONs *

The UNIoN operation can be used repeatedly to combine three or more sets of query results, as shown in Figure 6-16. The union of Table B and Table C in the figure produces a single, combined table. This table is then combined with Table A in another

UNIoN operation. The query in the figure is written this way:

SELECT * FROM A

UNION (SELECT *

FROM B UNION

SELECT * FROM C)

Bill Mary George Fred Sue Julia Harry

The parentheses in the query indicate which UNIoN should be performed first. In fact, if all of the ONIoNs in the statement eliminate duplicate rows, or if all of them retain duplicate rows, the order in which they are performed is unimportant. These three expressions are completely equivalent:

A UNION (B UNION C) (A UNION B) UNION C (A UNION C) UNION B

and produce seven rows of query results. Similarly, the following three expressions are completely equivalent and produce twelve rows of query results, because the duplicates are retained:

A UNION ALL (B UNION ALL C) (A UNION ALL B) UNION ALL C (A UNION ALL C) UNION ALL B

However, if the unions involve a mixture of UNIoN and vNIoN Alulu, the order of evaluation matters. If this expression:

A UNION ALL B UNION C

is interpreted as:

A UNION ALL (B UNION C)

then it produces ten rows of query results (six from the inner UNIoN, plus four rows from Table A). However, if it is interpreted as:

(A UNION ALL B) UNION C

then it produces only four rows, because the outer UNIoN eliminates all duplicate rows. For this reason, it’s always a good idea to use parentheses in vNIoNS Of three or more tables to specify the order of evaluation intended.

Summary

This chapter is the first of four chapters about SQL queries. It described the following

query features:

  • The sELECT Statement is used to express a SQL query. Every sEIuECT Statement produces a table of query results containing one or more columns and zero or more rows.
  • The FRoM clause specifies the table(s) containing the data to be retrieved by a query.
  • The sELECT clause specifies the column(s) of data to be included in the query results, which can be columns of data from the database, or calculated columns.
  • The wHERE clause selects the rows to be included in the query results by applying a search condition to rows of the database.
  • A search condition can select rows by comparing values, by checking a value against a range or set of values, by matching a string pattern, and by checking for NvZZ values.
  • Simple search conditions can be combined with AND, OR, and NoT to form more complex search conditions.
  • The oRDER By clause specifies that the query results should be sorted in ascending or descending order, based on the values of one or more columns.
  • The UNIoN operation can be used within a sELECT Statement to cOmbine two or more sets of query results into a single set.

A Two-Table Query Example

The best way to understand the facilities that SQL provides for multi-table queries is to start with a simple request that combines data from two different tables:

“List all orders, showing the order number and amount, and the name and credit limit of the customer who placed it.”

The four specific data items requested are clearly stored in two different tables, as shown in Figure 7-1.

The oRDERS table contains the order number and amount of each order, but doesn’t have customer names or credit limits.

  • The CUSTOMERS table contains the customer names and balances, but it lacks any information about orders.

There is a link between these two tables, however. In each row of the oRDERS table, the CUST column contains the customer number of the customer who placed the order, which matches the value in the cUsT NAM COlumn in one of the rows in the cms TOMERS table. Clearly, the sEzECI statement that handles the request must somehow use this link between the tables to generate its query results.