Introduction To Microsoft SQL Server 2014
Introduction To Microsoft SQL Server 2014
Relational Databases
About the Course Sample Database
Client Server Databases
• Queries
Relational Databases
Relational databases:
• Typically comprise of multiple tables
• Use joins to extract related data from multiple
objects
• Typically contain objects and data
• Set-based language
• Scripts
• Batches
CREATE TABLE HumanResources.Employees(
EmployeeID int PRIMARY KEY,
LastName nvarchar(25), FirstName nvarchar(25) );
GO
GO
Lesson 2: SQL Server Editions and Versions
Starting SSMS
Connecting to SQL Server
Working with Object Explorer
Working with Script Files and Projects
Executing Queries
Using Books Online
• Demonstration: Introducing Microsoft SQL Server
2014
Starting SSMS
Logon Information
Virtual machine: 20461C-MIA-SQL
User name: ADVENTUREWORKS\Student
Password: Pa$$w0rd
• Review Question(s)