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


Hands-on Data Analysis on SQL Server using SSMS and T-SQL

What you will learn

Learn how to Setup SQL Server

Connect to SQL Server using SSMS

Install sample database

Filter data using equality filters

Filter data using comparison filters

Filter data using logical filters

Filter data using string filters

Filter data using NULL Filters

Sort data in ascending order

Sort data in descending order

Description

Data analysis is a process of inspecting, cleansing, transforming, and modelling data with the goal of discovering useful information, informing conclusions, and supporting decision-making.

Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applicationsβ€”which may run either on the same computer or on another computer across a network.

SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure. Use SSMS to access, configure, manage, administer, and develop all components of SQL Server, Azure SQL Database , Azure SQL Managed Instance, SQL Server on Azure VM, and Azure Synapse Analytics. SSMS provides a single comprehensive utility that combines a broad group of graphical tools with many rich script editors to provide access to SQL Server for developers and database administrators of all skill levels.

T-SQL, which stands for Transact-SQL and is sometimes referred to as TSQL, is an extension of the SQL language used primarily within Microsoft SQL Server. This means that it provides all the functionality of SQL but with some added extras.


Get Instant Notification of New Courses on our Telegram channel.


Sorting is the process of arranging data into meaningful order so that you can analyse it more effectively. For example, you might want to order sales data by calendar month so that you can produce a graph of sales performance. You can sort text data into alphabetical order. sort numeric data into numerical order.

The ORDER BY keyword is used to sort the result-set in ascending or descending order.Β  The ORDER BY keyword sorts the records in ascending order by default. To sort the records in descending order, use the DESC keyword.

Data filtering is the process of choosing a smaller part of your data set and using that subset for viewing or analysis.

A WHERE clause in SQL specifies that a SQL Data Manipulation Language (DML) statement should only affect rows that meet specified criteria. . SQL WHERE clause is used to extract only those results from a SQL statement, such as: SELECT , INSERT , UPDATE , or DELETE statement. Using the WHERE clause t you can filter data.

English
language

Content

Introduction

Introduction
What is SQL Server
What is SSMS
What is T-SQL

SQL Server Setup

Download SQL Server
Install SQL Server
Install SSMS
Connect to SQL Server
Download Sample Database

Data Analysis: Filtering Data

Introduction
Filter data with basic equality filters
Filter data with basic comparison filters
Filter data with logical comparison
Filter data with String Comparison
Filter data with NULL Comparison

Data Analysis: Sorting data

Introduction
ORDER BY Clause
Sort by ascending
Sort by descending
Sort by multiple columns