18

Click here to load reader

Sql server introduction fundamental

Embed Size (px)

DESCRIPTION

SELECT, ORDER BY, FROM

Citation preview

Page 1: Sql server introduction fundamental

MS SQL SERVER AND MYSQL

Day 1

Page 2: Sql server introduction fundamental

Introduction

• Microsoft SQL Server is a relational database management system which stores data in tabular format that is columns and rows wise.

• Components of Sql server

1. Database Engine

2. Sql Server Integration Services (SSIS)

3. Sql Server Analyses Services (SSAS)

4. Sql Server Reporting Services (SSRS)

Page 3: Sql server introduction fundamental

Database Engine

• Its task is to provide cores functionalities that is storing and retrieving the data in very efficient manner.

1. Creating database objects like table, view, stored procedure etc.

2. Retrieving, updating, inserting, deleting or merging data from different database objects.

3. Sending email notification when data is modified.

4. Perform some database scheduled jobs etc.

Page 4: Sql server introduction fundamental

Integration Services(SSIS)

• It can load the 1 TB data in 30 minutes.

• Its task is to extract the data from different sources likes databases, raw files, XML etc, perform some operations (likes data cleaning, sending emails etc) and load the data into different destinations.

• Download the data from FTP severs, correct the spelling, verb forms etc of data and save in the XML file.

Page 5: Sql server introduction fundamental

Analyses Services(SSAS)

• Its task is to create multi dimensional data structure of an OLAP system, analyze and aggregate the data. Also it implements various data mining models.

1. Get the detail information of sold car over last 10 years for that family which has three children.

2. Forecasting sales in coming year etc.

Page 6: Sql server introduction fundamental

Reporting Services(SSIS)

• Generate a report by getting data from different tables in PDF format.

• Generate a report to display total sales in different location of a country in map view.

• Generate a pie chart to display purchase volume.

Page 7: Sql server introduction fundamental

Server Vs Client

1. What is difference between Sql Server and SSMS?

2. What is difference between MySql Server and MySql Workbench?

Page 8: Sql server introduction fundamental

Server Vs Client

Page 9: Sql server introduction fundamental

SELECT Statement

1. FROM2. ON3. JOIN4. WHERE5. GROUP BY6. WITH CUBE or WITH ROLLUP7. HAVING8. SELECT9. DISTINCT10. ORDER BY11. TOP

Page 10: Sql server introduction fundamental

FROM Clause

• [Linked_Server].[Database_Name].[Schema_Name].[Table_Name]

Page 11: Sql server introduction fundamental

WHERE Clause

• This clause filters the records from data source.

• Wrongly written filter predicates(conditions) can badly decreases the query performance.

Page 12: Sql server introduction fundamental

Does order of predicates matters in WHERE clause?

• Comparison with string is costlier than integer comparison.

• LIKE is itself a costly operator.

• Also if first filter condition will return less result set then other filter condition has to perform less number of comparisons.

Page 13: Sql server introduction fundamental

ORDER BY Clause

• Syntax: ORDER BY <Expression>

[ASC | DESC]

[,…n]

• What is Default sort order?

Page 14: Sql server introduction fundamental

TOP Clause

• Syntax: TOP(Expression) [PERCENT] [WITH TIES]

• Only specified first set or percent rows will be returned.

• It returns random rows.

• MySql equivalent is LIMIT clause.

Page 15: Sql server introduction fundamental

GROUP BY Clause

Student Name Semester Mathematics Physics

Scott 1 20 30

Scott 2 15 20

Scott 3 25 25

Greg 1 18 25

Greg 2 20 35

Greg 3 22 24

Note: In MySql GROUP BY clause all sort the data according group by columns.

Page 16: Sql server introduction fundamental

Aggregate Function

• COUNT

• COUNT_BIG

• AVG

• MIN

• MAX

• SUM

Page 17: Sql server introduction fundamental

HAVING Vs WHERE

• Syntax: [HAVING <Search Condition>]

• Having clause filters the records in the group.

• Where clause filter filters the records in the table.

Page 18: Sql server introduction fundamental

THANK YOU