Microsoft® SQL Server 2008 R2 Unleashed
by Ray Rankins, Paul Bertucci, Chris Gallelli, Alex T. Silverstein
Defining Table Constraints
Constraints provide a means to enforce data integrity. In addition to NULL/NOT NULL, discussed earlier in this chapter, SQL Server provides five constraint types: PRIMARY KEY, FOREIGN KEY, UNIQUE, CHECK, and DEFAULT. These constraints help further define the type of data you can store in tables.
Constraints are covered in detail in Chapter 26, “Implementing Data Integrity.” This chapter introduces the basic means for adding constraints to a table. You can add constraints at the time of table creation, or you can add them after a table has been created, by using the ALTER TABLE statement.
Listing 24.11 shows a CREATE TABLE statement that has an example of each one of the five constraint types listed. The PRIMARY KEY ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access