Vanaf € 422,29 € 349,00

Vanaf € 422,29 € 349,00

Extra opties

1 x Training: Querying Data with Transact-SQL (exam 70-761)   + € 422,29 € 349,00
€ 349,00
Incl. BTW

Snel navigeren naar:

  • Inhoud
  • Voordelen
  • Specificaties
  • Reviews
  • More information
  • FAQ

Productinformatie

In deze cursus leert u de kennis en vaardigheden op het gebied van TransactSQL. De TransACT SQL wordt gebruikt door alle SQL Server gerelateerde disciplines namelijk: Database Administration, Database Development en Business Intelligence. U leert onder andere over het gebruik van tabelontwerpen, een introductie van DML (data manipulation language), queries schrijven voor ingebouwde functies in SQL Server 2016, samenvoegen van data in SQL Server 2016, introductie van subqueries, implementatie van verschillende database objecten en nog veel meer.

Inhoud van de training

Querying Data with Transact-SQL (exam 70-761)

28 uur

T-SQL Querying

  • start the course
  • recognize features of SQL Server 2016
  • list SQL Server 2016 editions and components
  • identify SQL Server 2016 functions and capabilities
  • list features of SQL Server Management Studio
  • configure T-SQL statements in SQL Server 2016
  • work with T-SQL Language functions in SQL Server 2016
  • create T-SQL Variables in SQL Server 2016
  • demonstrate how to implement T-SQL expressions in SQL Server 2016
  • work with T-SQL control of flow, errors, and transactions in SQL Server 2016
  • use T-SQL comments in SQL Server 2016
  • work with T-SQL batch separators
  • describe the characteristics of sets in SQL Server 2016
  • describe the set theory and how it relates to SQL Server 2015
  • describe applying set theory to SQL server queries
  • define predicate logic in SQL Server 2016
  • recognize the elements of a SELECT statement in SQL Server 2016
  • define the logical order of operations
  • demonstrate the logical order of operations when writing SELECT statements
  • demonstrate querying data in SQL Server 2016

Querying and Manipulating Data

  • start the course
  • recognize elements of simple SQL Server 2016 SELECT queries
  • demonstrate how to write simple SELECT statements in SQL Server 2016
  • demonstrate how to use calculations in the SELECT clause
  • describe the purpose of DISTINCT in SQL Server 2016
  • describe how to execute a SELECT DISTINCT
  • demonstrate how to eliminate duplicates using DISTINCT
  • describe how to refer to columns using aliases
  • specify how to refer to tables using aliases
  • describe SQL Server 2016 CASE expressions
  • demonstrate how to use simple CASE expressions
  • recognize how and when to use joins in SQL Server 2016
  • demonstrate the proper usage of inner joins in SQL Server 2016
  • demonstrate the proper usages of outer joins in SQL Server 2016
  • demonstrate the proper usages of outer joins in SQL Server 2016
  • demonstrate the proper usages of cross and self joins
  • demonstrate the use of multiple join operators
  • demonstrate how to write queries with NULLs on joins
  • demonstrate how to query and manipulate data in SQL Server 2016

Filter and Modify Data in SQL Server 2016

  • start the course
  • describe the ORDER BY clause in SQL Server 2016
  • demonstrate how to sort data in SQL Server 2016 using the ORDER BY clause
  • recognize how to filter data in SQL Server 2016
  • demonstrate how to filter data in SQL Server 2016 using the WHERE clause
  • describe how to use predicates and operators in SQL Server 2016
  • describe three-valued logic in SQL Server 2016
  • work with NULL in Queries in SQL Server 2016
  • describe how to test for NULL in SQL Server 2016
  • describe how SQL Server 2016 uses data types
  • recognize when data type conversions occur in SQL Server 2016
  • demonstrate implicit and explicit conversions
  • describe different types of character data in SQL Server 2016
  • demonstrate how to manipulate character data in SQL Server 2016
  • list the benefits of using data manipulation language (DML) in SQL Server 2016
  • describe how to populate tables in SQL Server 2016 using the SELECT INTO statement
  • demonstrate how to add data using INSERT statement
  • describe how to use UPDATE and MERGE statements to modify data
  • describe how to use DELETE and TRUNCATE statements to remove data
  • demonstrate how to use the OUTPUT clause to monitor data in SQL Server 2016
  • demonstrate how to filter and modify data in SQL Server 2016

Using Functions in SQL Server 2016

  • start the course
  • list the built-in function types used in SQL Server 2016
  • work with scalar functions in SQL Server 2016
  • describe aggregate functions in SQL Server 2016
  • list Windows functions in SQL Server 2016
  • describe rowset functions in SQL Server 2016
  • work with implicit and explicit data type conversions in SQL Server 2016
  • demonstrate how to convert a value using the CAST function
  • demonstrate how to convert a value using the CONVERT function
  • describe how to convert a value using the PARSE function
  • demonstrate how to convert a value using the TRY_Parse function
  • describe how to convert a value using the TRY_Convert function
  • demonstrate how to validate data types using the ISNUMERIC function
  • work the IIF logical function in SQL Server
  • work with the CHOOSE function in SQL Server 2016
  • describe the NULL value in SQL Server 2016
  • demonstrate how to use ISNULL to replace NULL
  • work with the COALESCE function in SQL Server 2016
  • describe how to use the NULLIF function in SQL Server 2016
  • use functions in SQL Server 2016

Aggregating Data in SQL Server 2016

  • start the course
  • recognize the aggregate functions available using Transact-SQL
  • describe the built-in aggregate function SUM in SQL Server 2016
  • describe the built-in aggregate function AVG in SQL Server 2016
  • list the built-in aggregate function in MIN Server 2016
  • list the built-in aggregate function MAX in SQL Server 2016
  • list the built-in aggregate function COUNT in SQL Server 2016
  • describe how to aggregate distinct values using DISTINCT
  • demonstrate how to use aggregate functions with NULL
  • recognize when and where to use the GROUP BY clause
  • demonstrate how to group and rank the results of a query using the windowing functions in SQL Server 2016
  • describe how to process queries using the logical order of operations
  • describe the GROUP BY workflow process
  • describe how to use GROUP BY with aggregate functions in SQL Server 2016
  • demonstrate using complex GROUP BY clauses using GROUPING sets
  • recognize how to filter groups using the HAVING clause
  • recognize how to use PIVOT and UNPIVOT relational operators in SQL Server 2016
  • demonstrate how to use PIVOT in SQL Server 2016
  • demonstrate how to use UNPIVOT in SQL Server 2016
  • describe how to determine the impact on NULL values in PIVOT and UNPIVOT queries
  • use aggregate functions in SQL Server 2016

Subqueries and Predicate

  • start the course
  • recognize when and where to use subqueries in SQL Server 2016
  • describe the benefits of using scalar subqueries
  • demonstrate how to write scalar subqueries in SQL Server 2016
  • recognize how to write multi-valued subqueries in SQL Server 2016
  • work with correlated subqueries in SQL Server 2016
  • describe how to write correlated subqueries
  • recognize how to write correlated subqueries with aliases
  • describe how to write correlated subqueries with aliases
  • describe how to write correlated subqueries in a HAVING clause
  • describe how the EXISTS predicate evaluates data in SQL Server 2016
  • describe how to write queries using EXISTS with subqueries
  • demonstrate how to use EXISTS and NULLs in SQL Server 2016
  • describe how to use EXISTS and INNER JOINS in SQL Server 2016
  • demonstrate how to use NOT EXISTS with OUTER JOINs
  • use subqueries in SQL Server 2016

Operators and Expressions in SQL Server 2016

  • start the course
  • distinguish when to use the UNION and UNION All operators in SQL Server 2016
  • demonstrate how to write SQL Server 2016 queries that use the UNION operator
  • demonstrate how to write SQL Server 2016 queries that use the UNION ALL operator
  • demonstrate how to use the UNION and UNION ALL operators together
  • recognize when to use the EXCEPT operator in SQL Server 2016
  • demonstrate how to use the EXCEPT and INTERSECT operators in SQL Server 2016
  • determine the results of reversing the order of input with the EXCEPT operator
  • determine the effect of NULL values on the INTERSECT operator
  • recognize when to use the APPLY operator in SQL Server 2016
  • use APPLY statements that return given data based on supplied data in SQL Server 2016
  • use CROSS APPLY operators in SQL Server 2016
  • use OUTER APPLY operators in SQL Server 2016
  • recognize the basic components of table expressions in SQL Server 2016
  • describe the difference between table expressions and temporary tables
  • create recursive table expressions in SQL Server 2016
  • use operators in SQL Server 2016

Database Programmability Objects and Non-Relational Data

  • start the course
  • describe stored procedures in SQL Server 2016
  • use and create stored procedures in SQL Server 2016
  • demonstrate how to input parameters in SQL Server 2016
  • demonstrate how to output parameters in SQL Server 2016
  • recognize table-valued functions in SQL Server 2016
  • describe scalar-valued user-defined functions in SQL Server 2016
  • demonstrate TRY…CATCH error handling
  • demonstrate how to use RAISERROR in SQL 2016
  • describe temporal data types in SQL Server 2016
  • work with temporal tables in SQL Server 2016
  • describe XML data
  • describe JSON data
  • demonstrate how to query and output JSON data in SQL Server 2016
  • demonstrate how to query and output XML data in SQL Server 2016
  • use database programmability objects in SQL Server 2016

TestPrep 70-761 Querying Data with Transact SQL

Test your knowledge on the skills and competencies measured by the vendor certification exam. TestPrep can be taken in either Study or Certification mode. Study mode is designed to maximize learning by not only testing your knowledge of the material, but also by providing additional information on the topics presented. Certification mode is designed to test your knowledge of the material within a structured testing environment, providing valuable feedback at the end of the test.

Kenmerken

Bereidt voor op officieel examen
Engels (US)
28 uur
SQL Server 2016
180 dagen online toegang
HBO

Meer informatie

Extra product informatie 0
Doelgroep Systeembeheerder, Databasebeheerders
Voorkennis

Wij adviseren dat u bekend bent met de basis van databases.

resultaat

Na succesvolle afronding van deze cursus bent u bekend met de kennis en vaardigheden van TransactSQL dat wordt gebruikt door alle SQL Server gerelateerde disciplines namelijk: Database Administration, Database Development en Business Intelligence.

Tevens bent u optimaal voorbereid op het officiele Microsoft Examen Querying Data with Transact-SQL (exam 70-761)

Let op: Dit examen komt te vervallen per 31 Januari 2021. Wil je advies over welke training je dan kunt volgen, neem contact op met ons support team.

Positieve reacties van cursisten

Ontwikkel je tot data analist

Service is echt heel goed. Snel, klantvriendelijk, weten waar ze over praten en denken met je mee met oplossingen. Daarnaast hebben ze ook een goed leerplatform om je studie te volgen en na elke module een korte toets om te zien hoeveel je ervan heb begrepen en je kan de status zien hoeveel tijd je hebt besteed aan je studie. Ik waardeer ze enorm en ik raad elke ICT'er aan om met hen in zee te gaan om je studie te volgen.

- Emilio Jones

Training: Introduction to SQL

Eén training geprobeerd en deze naar tevredenheid gevolgd. Een module werkte in eerste instantie niet, maar na contact opgenomen te hebben met klantenservice kreeg ik snel antwoord met een oplossing.

- Lars van der Spek

Training: Certified Ethical Hacker (CEHv12) - incl. examen

Eerste keer dat ik een online training heb gedaan en zou zo weer een training volgen via icttraningen.nl

- Jerry Jialal

Training: Microsoft Managing Modern Desktops (exam MD-101)

Het resultaat van de groep is absoluut bevredigend. Ik ga in ieder geval geen ander meer bellen.

- Antoine Evertze, Sales Engineer bij Chubb

Training: PRINCE2® 6e editie Foundation- incl. examen

Als er wat is staan ze altijd voor me klaar. Ik word meteen geholpen als ik bel.

- E. Zeijlmans, P&O adviseur bij Parnassia Groep

Training: ITIL® 4 Foundation - incl. examen

Wij zijn gebaat bij mensen die bijblijven in hun vakgebied en continu getriggerd worden.

- W. van Uijthoven, IT manager bij gemeente Arnhem

Training: Excel 2013 Compleet

Ik heb al eens eerder een training gehad via icttrainingen.nl en dat was een erg leerzame, leuke ervaring. Nu heb ik via het werk een online cursus en deze lijkt tot nu toe ook erg leerzaam.

- Michelle Brierley

Hoe gaat het te werk?

1

Training bestellen

Nadat je de training hebt besteld krijg je bevestiging per e-mail.

2

Toegang leerplatform

In de e-mail staat een link waarmee je toegang krijgt tot ons leerplatform.

3

Direct beginnen

Je kunt direct van start. Studeer vanaf nu waar en wanneer jij wilt.

4

Training afronden

Rond de training succesvol af en ontvang van ons een certificaat!

Veelgestelde vragen

Veelgestelde vragen

Op welke manieren kan ik betalen?

Je kunt bij ons betalen met iDEAL, PayPal, Creditcard, Bancontact en op factuur. Betaal je op factuur, dan kun je met de training starten zodra de betaling binnen is.

Hoe lang heb ik toegang tot de training?

Dit verschilt per training, maar meestal 180 dagen. Je kunt dit vinden onder het kopje ‘Kenmerken’.

Waar kan ik terecht als ik vragen heb?

Je kunt onze Learning & Development collega’s tijdens kantoortijden altijd bereiken via support@icttrainingen.nl of telefonisch via 026-8402941.

Background Frame
Background Frame

Onbeperkt leren

Met ons Unlimited concept kun je onbeperkt gebruikmaken van de trainingen op de website voor een vast bedrag per maand.

Bekijk de voordelen

Heb je nog twijfels?

Of gewoon een vraag over de training? Blijf er vooral niet mee zitten. We helpen je graag verder. Daar zijn we voor!

Contactopties