Ön Koşul
Bu eğitim katılımcıları Transact-SQL ile tanıştırmak üzere tasarlanmıştır.
Etkinlik Hedefi
Bu eğitimin amacı katılımcıların SQL Server ile ilgili tüm disiplinler tarafından kullanılan Transact-SQL dilini anlamaları sağlamaktır. Veritabanı Yönetimi, Veritabanı Geliştirme ve İş Zekası. Bu eğitimin birincil hedef kitlesi, Veritabanı Yöneticileri, Veritabanı Geliştiricileri ve BI uzmanlarıdır.
Dersin temel amacı, öğrencilere SQL Server ile ilgili tüm disiplinler tarafından kullanılan Transact-SQL dilini iyi anlamalarını sağlamaktır; Veritabanı Yönetimi, Veritabanı Geliştirme ve İş Zekası. Bu nedenle, bu kursun birincil hedef kitlesi: Veritabanı Yöneticileri, Veritabanı Geliştiricileri ve BI uzmanları.
Etkinlik İçeriği
Course OutlineModule 1: Introduction to Microsoft SQL ServerThis module introduces SQL Server, the versions of SQL Server, including cloud versions, and how to connect to SQL Server using SQL Server Management Studio.Lessons
Lab : Working with SQL Server Tools
After completing this module, you will be able to:
Describe relational databases and Transact-SQL queries.
Describe the on-premise and cloud-based editions and versions of SQL Server.
Describe how to use SQL Server Management Studio (SSMS) to connect to an instance of SQL Server, explore the databases contained in the instance, and work with script files that contain T-SQL queries.
Module 2: Introduction to T-SQL QueryingThis module describes the elements of T-SQL and their role in writing queries. Describe the use of sets in SQL Server. Describe the use of predicate logic in SQL Server. Describe the logical order of operations in SELECT statements. Lessons
Lab : Introduction to T-SQL Querying
Describe the role of T-SQL in writing SELECT statements.
Describe the elements of the T-SQL language and which elements will be useful in writing queries.
Describe the concepts of the set theory, one of the mathematical underpinnings of relational databases, and to help you apply it to how you think about querying SQL Server
Describe predicate logic and examine its application to querying SQL Server.
Explain the elements of a SELECT statement, delineate the order in which the elements are evaluated, and then apply this understanding to a practical approach to writing queries.
Module 3: Writing SELECT QueriesThis module introduces the fundamentals of the SELECT statement, focusing on queries against a single table.Lessons
Lab : Writing Basic SELECT Statements
Describe the structure and format of the SELECT statement, as well as enhancements that will add functionality and readability to your queries
Describe how to eliminate duplicates using the DISTINCT clause
Describe the use of column and table aliases
Understand and use CASE expressions
Module 4: Querying Multiple TablesThis module describes how to write queries that combine data from multiple sources in Microsoft SQL Server. Lessons
Lab : Querying Multiple Tables
Explain the fundamentals of joins in SQL Server
Write inner join queries
Write queries that use outer joins
Use additional join types
Module 5: Sorting and Filtering DataThis module describes how to implement sorting and filtering.Lessons
Lab : Sorting and Filtering Data
Explain how to add an ORDER BY clause to your queries to control the order of rows displayed in your query's output
Explain how to construct WHERE clauses to filter out rows that do not match the predicate.
Explain how to limit ranges of rows in the SELECT clause using a TOP option.
Explain how to limit ranges of rows using the OFFSET-FETCH option of an ORDER BY clause.
Explain how three-valued logic accounts for unknown and missing values, how SQL Server uses NULL to mark missing values, and how to test for NULL in your queries.
.Module 6: Working with SQL Server Data TypesThis module introduces the data types SQL Server uses to store data.Lessons
Lab : Working with SQL Server Data Types
Explore many of the data types SQL Server uses to store data and how data types are converted between types
Explain the SQL Server character-based data types, how character comparisons work, and some common functions you may find useful in your queries
Describe data types that are used to store temporal data, how to enter dates and times so they will be properly parsed by SQL Server, and how to manipulate dates and times with built-in functions.
Module 7: Using DML to Modify DataThis module describes how to create DML queries, and why you would want to.Lessons
Lab : Using DML to Modify Data
Use INSERT and SELECT INTO statements
Use UPDATE, MERGE, DELETE, and TRUNCATE.
Module 8: Using Built-In FunctionsThis module introduces some of the many built in functions in SQL Server.Lessons
Lab : Using Built-In Functions
Describe the types of functions provided by SQL Server, and then focus on working with scalar functions
Explain how to explicitly convert data between types using several SQL Server functions
Describe how to use logical functions that evaluate an expression and return a scalar result.
Describe additional functions for working with NULL
Module 9: Grouping and Aggregating DataThis module describes how to use aggregate functions.Lessons
Lab : Grouping and Aggregating Data
Describe the built-in aggregate function in SQL Server and write queries using it.
Write queries that separate rows using the GROUP BY clause.
Write queries that use the HAVING clause to filter groups.
Module 10: Using SubqueriesThis module describes several types of subquery and how and when to use them.Lessons
Lab : Using Subqueries
Describe where subqueries may be used in a SELECT statement.
Write queries that use correlated subqueries in a SELECT statement
Write queries that use EXISTS predicates in a WHERE clause to test for the existence of qualifying rows
Use the EXISTS predicate to efficiently check for the existence of rows in a subquery.
Module 11: Using Table ExpressionsPreviously in this course, you learned about using subqueries as an expression that returned results to an outer calling query. Like subqueries, table expressions are query expressions, but table expressions extend this idea by allowing you to name them and to work with their results as you would work with data in any valid relational table. Microsoft SQL Server supports four types of table expressions: derived tables, common table expression (CTEs), views, and inline table-valued functions (TVFs). In this module, you will learn to work with these forms of table expressions and learn how to use them to help create a modular approach to writing queries.Lessons
Lab : Using Table Expressions
Write queries that return results from views.
Use the CREATE FUNCTION statement to create simple inline TVFs.
Write queries that create and retrieve results from derived tables.
Write queries that create CTEs and return results from the table expression.
Module 12: Using Set OperatorsThis module introduces how to use the set operators UNION, INTERSECT, and EXCEPT to compare rows between two input sets.Lessons
Lab : Using Set Operators
After completing this module, students will be able to:
Module 13: Using Windows Ranking, Offset, and Aggregate FunctionsThis module describes the benefits to using window functions. Restrict window functions to rows defined in an OVER clause, including partitions and frames. Write queries that use window functions to operate on a window of rows and return ranking, aggregation, and offset comparison results.Lessons
Lab : Using Windows Ranking, Offset, and Aggregate Functions
Module 14: Pivoting and Grouping SetsThis module describes write queries that pivot and unpivot result sets. Write queries that specify multiple groupings with grouping sets Lessons
Lab : Pivoting and Grouping Sets
Module 15: Executing Stored ProceduresThis module describes how to return results by executing stored procedures. Pass parameters to procedures. Create simple stored procedures that encapsulate a SELECT statement. Construct and execute dynamic SQL with EXEC and sp_executesql.Lessons
Lab : Executing Stored Procedures
Module 16: Programming with T-SQLThis module describes how to enhance your T-SQL code with programming elements.Lessons
Lab : Programming with T-SQL
Module 17: Implementing Error HandlingThis module introduces error handling for T-SQL.Lessons
Lab : Implementing Error Handling
Module 18: Implementing TransactionsThis module describes how to implement transactions.Lessons
Lab : Implementing Transactions