SlideShare a Scribd company logo
Constraints
Presentation by Aaron Buma
Dev Lead and DBA
Session Overview
•Constraints
•Data Integrity
•Demos
Primary Key Constraint
•Most common constraint
•Doesn’t allow NULL or duplicates
•There can only be one per table
Unique Constraint
•Can be used when a table already has a Primary Key
•Does not allow duplicates, but DOES allow a NULL
Check Constraint
•Enforces domain integrity, data must conform
•Can refer to a single or multiple columns
•Example: column value must be > 3.
Default Constraint
•Useful for inserting data into “NOT NULL” columns
•Can be dynamic, example: Using GETDATE()
•Can be overridden with actual values
Foreign Key Constraint
•A value in the FK’d table exists as a Primary Key of a
table, usually a different one
•Verifies constraint on EXISTING data and NEW data
– “WITH NOCHECK” only verifies NEW data
Data Integrity
•Domain Integrity (Constraint on individual value)
– Check Constraints
•Entity Integrity (Looks at entire table)
– Primary Keys, Unique Constraints
•Referential Integrity (must exist in other table)
– Foreign Keys
DEMOS
Review
• Constraints
• Data Integrity
Presentation Recording, Slides and Scripts
– Available at: http://www.AaronBuma.com

More Related Content

PPT
Introduction to XML
PDF
Database 101
PPTX
Unit 2
PPTX
Dom parser
PDF
Learn Java Part 10
PPTX
V27 constraint
PPTX
Xml dom
PPT
09 string processing_with_regex copy
Introduction to XML
Database 101
Unit 2
Dom parser
Learn Java Part 10
V27 constraint
Xml dom
09 string processing_with_regex copy

Viewers also liked (19)

PPTX
SQL Server GUIDS (Globally Unique Identifiers)
PPTX
XQuery Extensions
PPT
Spatial data types
PPT
Constraints In Sql
PPTX
Integrity Constraints
PDF
SQL Triggers
PPT
SQL Views
PDF
Sql integrity constraints
PPTX
Sql server ___________session_15(data integrity)
PPT
Including Constraints -Oracle Data base
PDF
Window functions in MariaDB 10.2
PDF
Common Table Expressions in MariaDB 10.2 (Percona Live Amsterdam 2016)
PDF
Sql server windowing functions
PPTX
oracle Sql constraint
PPTX
integrity constraints
PPTX
Exploring Advanced SQL Techniques Using Analytic Functions
PDF
10 SQL Tricks that You Didn't Think Were Possible
PPT
Data integrity
SQL Server GUIDS (Globally Unique Identifiers)
XQuery Extensions
Spatial data types
Constraints In Sql
Integrity Constraints
SQL Triggers
SQL Views
Sql integrity constraints
Sql server ___________session_15(data integrity)
Including Constraints -Oracle Data base
Window functions in MariaDB 10.2
Common Table Expressions in MariaDB 10.2 (Percona Live Amsterdam 2016)
Sql server windowing functions
oracle Sql constraint
integrity constraints
Exploring Advanced SQL Techniques Using Analytic Functions
10 SQL Tricks that You Didn't Think Were Possible
Data integrity
Ad

Recently uploaded (20)

PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
KodekX | Application Modernization Development
PDF
Empathic Computing: Creating Shared Understanding
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPT
Teaching material agriculture food technology
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
DOCX
The AUB Centre for AI in Media Proposal.docx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Machine learning based COVID-19 study performance prediction
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
Cloud computing and distributed systems.
20250228 LYD VKU AI Blended-Learning.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
KodekX | Application Modernization Development
Empathic Computing: Creating Shared Understanding
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Chapter 3 Spatial Domain Image Processing.pdf
Teaching material agriculture food technology
Dropbox Q2 2025 Financial Results & Investor Presentation
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
The AUB Centre for AI in Media Proposal.docx
“AI and Expert System Decision Support & Business Intelligence Systems”
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Machine learning based COVID-19 study performance prediction
MYSQL Presentation for SQL database connectivity
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
The Rise and Fall of 3GPP – Time for a Sabbatical?
Per capita expenditure prediction using model stacking based on satellite ima...
Cloud computing and distributed systems.
Ad

SQL Server - Constraints