1: Introduction to SQL Server
1: Introduction
2. Basic Database Concepts
2.1 Data
2.2 Information
2.3 Database
2.4 Table
3. SQL Server Architecture
4. SQL Command Types
4.1 DDL – Data Definition Language
4.2 DML – Data Manipulation Language
4.3 DQL – Data Query Language
4.4 TCL – Transaction Control Language
5. SQL Server Data Types (Detailed)
5.1 Numeric Data Types
5.2 Character Data Types
5.3 Date & Time Data Types
6. Constraints
Why Constraints are Required
Types of Constraints in SQL Server
6.1 NOT NULL Constraint
Meaning
Why Used
Rules
Syntax
Example
6.2 UNIQUE Constraint
Meaning
Why Used
Rules
Syntax
Example
Multiple UNIQUE Constraints
6.3 PRIMARY KEY Constraint
Meaning
Why Used
Rules
Syntax
Single Column Primary Key
Composite Primary Key
6.4 FOREIGN KEY Constraint
Meaning
Why Used
Rules
Example (Parent–Child Relationship)
ON DELETE / ON UPDATE
Last updated