• Post category:StudyBullet-4
  • Reading time:5 mins read


Learn to query and interact with SQL Server Databases with T-SQL

What you will learn

Query and filter data

Query and sort data

Query data with Aggregate Functions

Install SQL Server

Install Sample Database

Description

SQL Server is a relational database management system, or RDBMS, developed and marketed by Microsoft.

Similar to other RDBMS software, SQL Server is built on top of SQL, a standard programming language for interacting with the relational databases. SQL server is tied to Transact-SQL, or T-SQL, the Microsoft’s implementation of SQL that adds a set of proprietary programming constructs.

 

What is SQL?

SQL stands for Structured Query Language

SQL lets you access and manipulate databases

SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987

 

SQL is a standard language for accessing and manipulating databases.

 

What is SQL?

 

SQL stands for Structured Query Language

SQL lets you access and manipulate databases

SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987

What Can SQL do?

SQL can execute queries against a database

SQL can retrieve data from a database


Get Instant Notification of New Courses on our Telegram channel.


SQL can insert records in a database

SQL can update records in a database

SQL can delete records from a database

SQL can create new databases

SQL can create new tables in a database

SQL can create stored procedures in a database

SQL can create views in a database

SQL can set permissions on tables, procedures, and views

 

In this course we are going to query data from a sample database installed inside Microsoft SQL Server  using T-SQL

 

Topics Covered include:

 

Filtering Data

Sorting Data

Aggregate Functions

English
language

Content

Installing Microsoft SQL Server

Introduction
What is T-SQL
What is SQL Server
Hardware and Software Requirements
Download Microsoft SQL Server Developer Edition
Installing Microsoft SQL Server Developer Edition
Installing SSMS
Connecting to Microsoft SQL Server with SSMS
Install Sample Database

Filtering Data

Introduction
Filtering with comparison operators
Filtering with logical operators
Filtering NULL Values

Sorting Data

Introduction
ORDER BY Clause
Sorting in ascending order
Sorting in descending order
Sorting multiple columns

Aggregate Functions

Introduction
Max Function
Min Function
SUM Function
Count Function