55366AC : Querying Microsoft SQL Server with Transact-SQL

Duration : 5 Days (40 Hours)

55366AC : Querying Microsoft SQL Server with Transact-SQL Course Overview:

This five-day 55366AC : Querying Microsoft SQL Server with Transact-SQL instructor-led course is intended for IT professionals who wish to use the Transact-SQL language to query and configure Microsoft SQL Server. Students are typically database developers and database administrators, but might also be Business Intelligence developers, report creators, or application developers. In this course, students learn how to query single tables, join data from multiple tables, filter and sort data, modify data, use procedures and functions, and implement error handling.

Audience Profile

This course is intended for novice database developers, database administrators, Business Intelligence developers, report creators, and application developers who have an understanding of relational database concepts and have basic Windows navigation skills.

At Course Completion

  • Create single table SELECT queries
  • Create multiple table SELECT queries
  • Filter and sort data
  • Insert, update, and delete data
  • Query data using built-in functions
  • Create queries that aggregate data
  • Create subqueries
  • Create queries that use table expressions
  • Use UNION, INTERSECT, and EXCEPT on multiple sets of data
  • Implement window functions in queries
  • Use PIVOT and GROUPING SETS in queries
  • Use stored procedures in queries
  • Add error handling to queries
  • Use transactions in queries

Module 1: Introduction to Transact-SQL

This module explains how to write and execute simple Transact-SQL queries.

Lessons

  • What is Transact-SQL
  • The SELECT statement
  • The WHERE clause
  • Sorting results
  • Calculations
  • CASE expressions

Lab 1: Introduction to Transact-SQL

  • Run a query
  • Search for text strings
  • Sort the results

After completing this module, students will be able to:

  • Describe Transact-SQL
  • Write a SELECT statement
  • Write a WHERE clause
  • Sort results
  • Implement calculations
  • Add CASE expressions

This module explains how to query multiple tables and join the results together in a single recordset.

Lessons

  • The JOIN clause
  • Inner joins
  • Outer joins
  • Self joins and cross joins

Lab 1: Joining tables with Transact-SQL

  • Query two tables
  • Query many tables
  • Implement an oute join
  • Implement a self join
  • Implement a cross join

After completing this module, students will be able to:

  • Describe the JOIN clause
  • Implement inner joins
  • Create a query with outer joins
  • Implement self joins and cross joins

This module explains how to filter results to find specific records and how to sort the resulting recordset.

Lessons

  • Implement the ORDER BY clause
  • Filter data with the WHERE clause
  • Limit the number of rows returned by a query
  • Implement NULL logic

Lab 1: Filtering and sorting results

  • Filter data with a WHERE clause
  • Sort data with ORDER BY
  • Limit the number of rows returned by a query

After completing this module, students will be able to:

  • Implement the ORDER BY clause
  • Filter data with the WHERE clause
  • Limit the number of rows returned by a query
  • Implement NULL logic

This module explains how SQL Server uses data types. It’s essential to understand data types for comparing data and also for inserting and updating records.

Lessons

  • Understand data types?
  • Implement string data types
  • Implement temporal data types

Lab 1: SQL Server data types

  • Create queries with string data
  • Implement string functions
  • Create queries with temporal data
  • Implement temporal functions

After completing this module, students will be able to:

  • Understand data types?
  • Implement string data types
  • Implement temporal data types

This module explains how to use Transact-SQL Data Manipulation Language (DML) to inert, update and delete data.

Lessons

  • Insert new records
  • Update existing records
  • Delete data

Lab 1: Inserting, updating and deleting data

  • Insert new records
  • Update existing records
  • Delete data

After completing this module, students will be able to:

  • Insert new records
  • Update existing records
  • Delete data

This module explains how to alter the output or search criteria with built-in functions.

Lessons

  • Understand function types in SQL Server
  • Convert data using functions
  • Implement logical functions
  • Work with NULL data using functions

Lab 1: Using SQL Server functions with Transact-SQL

  • Convert data using functions
  • Implement logical functions
  • Work with NULL data using functions

After completing this module, students will be able to:

  • Convert data using functions
  • Implement logical functions
  • Work with NULL data using functions

This module explains how to group matching data and then aggregate numeric values for these groupings.

Lessons

  • Implement aggregation in SQL Server
  • Group records in SQL Server
  • Filter aggregated data

Lab 1: Aggregating data with Transact-SQL

  • Implement aggregation in SQL Server
  • Group records in SQL Server
  • Filter aggregated data

After completing this module, students will be able to:

  • Implement aggregation in SQL Server
  • Group records in SQL Server
  • Filter aggregated data

This module explains how to use the output from one query as the input to another query.

Lessons

  • Implement scalar and multi-valued sub-queries
  • Implement correlated subqueries
  • Implement existence checks with subqueries

Lab 1: Implement subqueries with Transact-SQL

  • Implement scalar and multi-valued sub-queries
  • Implement correlated subqueries
  • Implement existence checks with subqueries

After completing this module, students will be able to:

  • Implement scalar and multi-valued sub-queries
  • Implement correlated subqueries
  • Implement existence checks with subqueries

This module explains how to use table expressions to extend the capabilities of sub-queries. Table expressions essentially name the results of a sub-query and allow them to be referenced as if they were a table.

Lessons

  • Create views
  • Create table-valued functions
  • Implement derived tables
  • Implement common table expressions

Lab 1: Create queries that use table expressions

  • Create views
  • Create table-valued functions
  • Implement derived tables
  • Implement common table expressions

After completing this module, students will be able to:

  • Create views
  • Create table-valued functions
  • Implement derived tables
  • Implement common table expressions

This module explains how to combine the results of multiple queries rather than join them. In a simple UNION query both result sets are returned as one, with all the rows of each result set, but you can perform more complex operations and adjust how the multiple result sets interact.

Lessons

  • Write queries with the UNION operator
  • Write queries with the INTERSECT and EXCEPT operators
  • Write queries with the APPLY operator

Lab 1: Use UNION, INTERSECT, EXCEPT and APPLY on multiple sets of data

  • Write queries with the UNION operator
  • Write queries with the INTERSECT and EXCEPT operators
  • Write queries with the APPLY operator

After completing this module, students will be able to:

  • Write queries with the UNION operator
  • Write queries with the INTERSECT and EXCEPT operators
  • Write queries with the APPLY operator

This module explains how to use windowing functions to create result sets with features, such as row numbers or running totals, that are complex or even impossible in traditional T-SQL.

Lessons

  • Understand window functions
  • Impement window functions

Lab 1: Implement window functions in queries

  • Implement window ranking functions
  • Implement window offset functions
  • Implement window aggregate functions

After completing this module, students will be able to:

  • Understand window functions
  • Implement window functions

This module explains how to change the otput of queries in more sophisticated ways. PIVOT enables you to change the orientation of record sets and grouping sets allow you to apply multiple levels of aggregation.

Lessons

  • Implement PIVOT in queries
  • Implement grouping sets in queries

Lab 1: Use PIVOT and grouping sets in queries

  • Implement PIVOT in queries
  • Implement UNPIVOT in queries
  • Implement grouping sets in queries

After completing this module, students will be able to:

  • Implement PIVOT in queries
  • Implement grouping sets in queries

This module explains how to use existing stored procedures and to create simple stored procedures. Stored procedures are encapsulated blocks of T-SQL code that can return recordsets as well as insert, update and delete data.

Lessons

  • Query data with stored procedures
  • Interact with stored procedures using input and output parameters
  • Write simple stored procedures
  • Pass dynamic SQL to SQL Server

Lab 1: Use stored procedures in queries

  • Query data with stored procedures
  • Interact with stored procedures using input and output parameters
  • Write simple stored procedures

After completing this module, students will be able to:

  • Query data with stored procedures
  • Interact with stored procedures using input and output parameters
  • Write simple stored procedures

This module explains how to implement programming constructs seen in procedural programming languages such as loops and conditional execution.

Lessons

  • Understand T-SQL programming elements
  • Implement loops and conditions in T-SQL queries

Lab 1: Implement programming features in Transact-SQL

  • Implement variables in T-SQL
  • Implement loops and conditions in T-SQL
  • Implement variables in dynamic SQL statements

After completing this module, students will be able to:

  • Understand T-SQL programming elements
  • Implement loops and conditions in T-SQL queries

This module explains how to implement error handling in T-SQL. Some errors are inevitable, such as a date value being passed to a numeric field, but these errors can be handled and resolved with proper error handling.

Lessons

  • Understand SQL Server error handling
  • Implemet structured exception handling

Lab 1: Add error handling to queries

  • Implement structured exception handling
  • Pass errors to client applications

After completing this module, students will be able to:

  • Understand SQL Server error handling
  • Implemet structured exception handling

This module explains how to implement transactions to control how multiple connections to SQL Server interact with each other.

Lessons

  • Understand database transactions
  • Implement transactions in T-SQL

Lab 1: Use transactions in queries

  • Implement transactions in T-SQL
  • Combine transactions with error handling

After completing this module, students will be able to:

  • Understand database transactions
  • Implement transactions in T-SQL

Querying Microsoft SQL Server with Transact-SQL Course Prerequisites:

  • Basic understanding of relational databases.
  • Basic Windows knowledge.
Q: What is 55366AC: Querying Microsoft SQL Server with Transact-SQL?

A: 55366AC is a comprehensive training course that focuses on teaching participants how to effectively query Microsoft SQL Server using Transact-SQL (T-SQL). This course covers the fundamental concepts, syntax, and techniques required to retrieve, manipulate, and analyze data stored in SQL Server databases.

A: This Querying Microsoft SQL Server with Transact-SQL course is designed for database professionals, developers, data analysts, and anyone interested in gaining a solid understanding of querying SQL Server databases using T-SQL. It is suitable for beginners who are new to SQL Server as well as experienced professionals looking to enhance their T-SQL querying skills.

A: While prior experience with SQL and relational databases is beneficial, it is not a strict requirement. This course assumes basic familiarity with database concepts, such as tables, columns, and relationships. Some experience with SQL Server Management Studio (SSMS) and writing simple SQL queries will also be helpful.

A: The Querying Microsoft SQL Server with Transact-SQL course covers a wide range of topics, including T-SQL querying fundamentals, retrieving and filtering data, sorting and aggregating data, joining multiple tables, working with subqueries, creating and modifying tables, using built-in functions, working with views, and writing stored procedures. It also explores advanced topics such as error handling and transactions.

A: The Querying Microsoft SQL Server with Transact-SQL course is typically instructor-led and combines lectures, demonstrations, hands-on exercises, and discussions. Participants will have access to course materials, practice exercises, and sample databases to reinforce their learning. The course provides a structured learning path with progressively challenging exercises.

A: This course is designed to be version-agnostic and covers T-SQL querying concepts that are applicable to various versions of Microsoft SQL Server, including SQL Server 2019, SQL Server 2017, and earlier versions.

A: While this course does not directly provide a certification, it serves as excellent preparation for Microsoft certifications related to database development and administration. The knowledge gained from this course will be beneficial for individuals planning to pursue certifications such as Microsoft Certified: Azure Database Administrator Associate or Microsoft Certified: Data Analyst Associate.

A: Yes, this course is available in both online and traditional classroom formats. Online courses offer the flexibility to learn at your own pace and convenience, while traditional classroom courses provide a more interactive and collaborative learning experience.

A: By completing this course, participants will develop a solid foundation in T-SQL querying and gain the skills necessary to retrieve and manipulate data effectively from SQL Server databases. This knowledge is essential for anyone working with SQL Server, whether as a database professional, developer, or data analyst.

A: After completing this course, participants can consider advancing their SQL Server skills by exploring more specialized courses, such as those focusing on database administration, database development, or business intelligence. Microsoft offers a range of courses and certifications tailored to different SQL Server disciplines.

Discover the perfect fit for your learning journey

Choose Learning Modality

Live Online

  • Convenience
  • Cost-effective
  • Self-paced learning
  • Scalability

Classroom

  • Interaction and collaboration
  • Networking opportunities
  • Real-time feedback
  • Personal attention

Onsite

  • Familiar environment
  • Confidentiality
  • Team building
  • Immediate application

Training Exclusives

This course comes with following benefits:

  • Practice Labs.
  • Get Trained by Microsoft Certified Trainers (MCT).
  • Access to the recordings of your class sessions for 90 days.
  • Digital courseware
  • Experience 24*7 learner support.

Got more questions? We’re all ears and ready to assist!

Request More Details

Please enable JavaScript in your browser to complete this form.

Subscribe to our Newsletter

Please enable JavaScript in your browser to complete this form.
×