Home > Articles > Programming

📄 Contents

  1. Introduction
  2. Creating Joins with the SQL Server View Design Tool
  3. Conclusion
  4. Join Syntax
Like this article? We recommend

There are two primary ways to get to the View Design Tool: by right-clicking Views and choosing New View (see Figure 2), or by right-clicking an existing view and choosing the Design option. Figure 3 shows the four-pane View Design Tool screen.

Figure 2Figure 2 Creating a new view in SQL Server Enterprise Manager.

Figure 3Figure 3 SQL Server 2000 View Design Tool.

TIP

If the panes don't appear as shown in Figure 3, click the icons numbered 3–6 on the toolbar to insert the appropriate panes. (These buttons toggle the panes on and off.)

The first pane is for adding tables; the second for selecting columns, criteria, and sort orders. The third pane shows the SQL query and the fourth shows the query results.

Inner Join

To start creating the inner join, simply click the Add Table button (the one with the plus sign) on the toolbar to add tables or views to our designer. Figure 4 shows the tables in the Northwind sample database used for this example. After adding the Customers and Orders tables from Northwind, we get the result in Figure 5.

Notice the relationship connector in Figure 5 between the Customers and Orders tables. This relationship was already established in the database via a primary-to-foreign key relationship. The first table added is the left table.

CAUTION

Because Enterprise Manager is graphical, the table can be moved to another position—so it may not always appear on the left.

Figure 4Figure 4 Adding tables to the join.

Figure 05Figure 5 Inner join of Customers and Orders.

Next, we choose some columns by clicking the check boxes by the columns. For this example, I chose CompanyName, ContactName, OrderID, and OrderDate, and we now have a complete query.

TIP

This is a good way to build a query for the SQL Query Analyzer or stored procedure. Simply copy the query from the SQL pane and paste it into any text editor.

Notice that the dbo. prefix (short for database owner) has been appended to all items in the query. Most database tables are owned by dbo; obviously, if dbo doesn't own the table, the prefix of the owner will appear instead.

To run the query, click the Run button on the toolbar (showing a red exclamation point), or right-click anywhere in the blank gray area of the first pane and choose Run from the context menu. The fourth (result) pane should be populated with the query results, as shown in Figure 6.

Figure 6Figure 6 Query results.

Now that we've covered the basics, let's begin to analyze joins and see where the View Design Tool really shines.

All relationships between tables (or even within tables) in the database are inner joins; thus, the center of the relationship connector in our example looks like a diamond/parallelogram. If you right-click the connector, a context menu appears, as shown in Figure 7.

Figure 7Figure 7 Context menu for an inner join relationship connector.

The first option, Remove, deletes the relationship connector for the current view. (This doesn't affect relationships in the database itself—just the view that we're creating.) By default, the next two options are not checked with inner joins, because only matching rows satisfying the ON condition are returned.

Left Outer Join

To create a left outer join, we click the Select All Rows from Customers option and close the context menu. We now have a left outer join between the Customers and Orders tables, so the join shape on the relationship connector changes to a half-square on the left side (see Figure 8). Notice that the join type in the SQL pane has changed from INNER JOIN to LEFT OUTER JOIN. Executing this query will return the selected columns for all customers, whether or not they have orders.

Figure 8Figure 8 The query now contains a left outer join.

In the standard Northwind database, two customers have no orders. For these customers, the OrderID and OrderDate entries are null. To see these rows in this example, we need to scroll through the entire 832 rows of the result set.

TIP

How did I come up with 832 rows? Glad you asked. One regrettable omission from the View Design Tool is a row count. To get a row count, copy the text from the SQL pane to the SQL Query Analyzer (see Figure 9). The row count will normally appear either in the status bar or in the Messages tab.

Figure 9Figure 9 SQL Server 2000 SQL Query Analyzer showing the row count.

Meanwhile, back at the ranch, we'll extend our left outer join to more easily see only the customer records without orders. We'll do that by adding a WHERE condition to look for any OrderID that's null. (Always use IS NULL to check for equality to NULL.)

There are two ways to enter the WHERE clause:

  • by using the Criteria column of the second pane

  • by adding the clause directly to the SQL statement in the SQL pane

The end result will look the same, after the View Design Tool edits the query and before executing it. Figure 10 shows the WHERE condition and results for this example.

Figure 10Figure 10 Customers without orders in the Northwind database.

NOTE

We could just as easily have checked for a null OrderDate, as all we're looking for is a null column in the Orders table. The column doesn't even have to be selected in the second pane for output—any column in the Orders table would work just fine. The same number of rows would be returned, even without any selected order columns.

Right Outer Join

How do we change this query to a right outer join? And what are we asking from the system's point of view? In short, we're asking whether any rows in the second (right) table exist without matching rows in the left.

Because a primary/foreign key relationship (one to many) exists in this database, with the setting Enforce Relationship for Inserts and Updates active between the Customers and Orders tables, we expect all orders to have the customer number of an existing customer. How could life be otherwise? Well, in a real-world scenario:

  • We could have imported some data and disabled the constraints.

  • We might have tables that were built without constraints, and later created the constraints without using the option Check Existing Data on Creation.

  • We could have altered the table at some point to disable the constraints.

Let's set up the right outer join. To change the setting for the query, right-click the join connector; then deselect Select All Rows from Customers in the context menu. Right-click again, and click Select All Rows from Orders. (The checks are toggles.)

We also need to change the columns to check for nulls in the Customers table. Using the field Customers.CustomerID to test for nulls, the screen should look similar to Figure 11.

Figure 11Figure 11 Searching for orders without customers.

Presto—no orphaned rows appear. Life is good!

Full Outer Join

How do we find unmatched rows in both tables? Because we just unchecked Select All Rows in Customers, why don't we select it again while leaving the other option, Select All Rows in Orders, selected as well?

However, let's change the WHERE clause to look for nulls in both tables (see Figure 12). This will show us only the extra rows from both outer joins. (We have eliminated all of the inner join rows with our WHERE clause.)

Figure 12Figure 12 Full outer join of Customers and Orders.

This looks a lot like our left outer join—the one in which we checked for customers without orders. Because there were no orphaned order records, this is exactly what we got.

Notice that the join symbol is now a square, with an etched diamond or parallelogram. The beauty of using this tool is that it helps you immediately spot the join relationships.

Cross Join

The cross join is kind of a misnomer. Cross joins are really a pairing of rows from one table to the rows of another. For example, you might want to generate a list of different name combinations from first names and last names for test data.

TIP

The number of result rows in a cross join is always the number of rows of each table, multiplied together.

For this example, we'll start with a new view, using the Employees table in a self join. Because the Employees table has nine rows, we can expect 81 rows in the result set.

  1. To create the self join, add the table twice by double-clicking twice on the list item in the Table list box.

  2. Remove the join condition by clicking it and deleting.

  3. Choose FirstName from Employees, and LastName from Employees_1.

  4. To make the output clearer, order by dbo.Employees.FirstName and Employees_1.LastName. You can do this by entering the text directly into the SQL pane, by choosing 1 and 2 in the Sort Order column, or by choosing the Ascending option in the Sort Type column in respective order.

NOTE

To keep the two identical tables separate, the SQL 2000 View Design Tool prefaces the second table as Employees_1, and aliases the second listing of dbo. Employees with Employees_1.

  1. Figure 13 shows the cross join.

Figure 13Figure 13 Self join/cross join on Employees.

The result is a pairing of the FirstName in every row of the first table with the LastName of every row of the second table.

Although this query seems innocent enough, two tables with 5,000 rows each can yield 25 million records. This join is often done by mistake late in the day, simply by leaving out a WHERE clause or join condition. Following is a non–ANSI example of how this query can be written:

Select * from table1, table2

CAUTION

For large tables, it's not uncommon to run out of system swap area or otherwise bog down system resources with this kind of query.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020