Get 70-461, 761: Querying Microsoft SQL Server with Transact-SQL with 95% OFF Udemy Coupon

From Tables and SELECT queries to advanced SQL. SQL Server 2012, 2014, 2016, 2017, 2019, and 2022.

4.5 out of 5
(95,482 students enrolled)
Instructor: Phillip Burton, I Do Data Limited
Last Update:
Language: English

Key Takeaways — Course Overview

The following summarizes all verified data points for 70-461, 761: Querying Microsoft SQL Server with Transact-SQL, including pricing, duration, instructor, and coupon validity. All data is sourced directly from Udemy and verified by CoursesWyn on .

Course Title: 70-461, 761: Querying Microsoft SQL Server with Transact-SQL

Platform: Udemy (listed via CoursesWyn)

Instructor: Phillip Burton, I Do Data Limited

Coupon Verified:

Difficulty Level: All Levels

Category: IT & Software

Subcategory: IT Certifications

Duration: 28h 30m of on-demand video

Language: English

Access: Lifetime access to all course lectures and updates

Certificate: Official certificate of completion issued by Udemy upon finishing all course requirements

Top Learning Outcomes: Students who complete 70-461, 761: Querying Microsoft SQL Server with Transact-SQL will be able to: create tables in a database and ALTER columns in the table. · Know what data type to use in various situations, and use functions to manipulate date, number and string data values. · retrieve data using SELECT, FROM, WHERE, GROUP BY, HAVING and ORDER BY.

Prerequisites: You need to know how to use a computer, and hopefully know how to use a spreadsheet.

Price: $10.99 with coupon / Regular Udemy price: $199.99. Applying this coupon saves you $189.00 (95% OFF).

Important:

This coupon may not function properly in private/incognito browsing mode. Use a standard browser window and temporarily disable ad blockers or VPN services before clicking the redemption link to ensure the discount is applied correctly.

What You'll Learn

Completing 70-461, 761: Querying Microsoft SQL Server with Transact-SQL gives you the following verified skills and competencies in IT & Software:

  • create tables in a database and ALTER columns in the table.
  • Know what data type to use in various situations, and use functions to manipulate date, number and string data values.
  • retrieve data using SELECT, FROM, WHERE, GROUP BY, HAVING and ORDER BY.
  • JOIN two or more tables together, finding missing data.
  • INSERT new data, UPDATE and DELETE existing data, and export data INTO a new table.
  • Create constraints, views and triggers
  • Use UNION, CASE, MERGE, procedures and error checking
  • Apply ranking and analytic functions, grouping, geography and geometry database
  • Create subqueries and CTEs, PIVOTs, UDFs, APPLYs, synonyms.
  • Manipulate XMLs and JSONs.
  • Learn about transactions, optimise queries and row-based v set-based operations

Requirements

The following background knowledge and tools are recommended before starting 70-461, 761: Querying Microsoft SQL Server with Transact-SQL. Students without these prerequisites may still enroll but should expect a steeper learning curve.

  • You need to know how to use a computer, and hopefully know how to use a spreadsheet.
  • No prior knowledge of SQL Server required.
  • SSMS cannot be installed on the Mac OS. You need to have a Windows computer, or use a Mac computer which can dual-boot into Windows or using Parallel Desktop with Windows. (However, it will not work under Windows ARM - for example, a Mac M1 or M3.)
  • You don't even need SQL Server installed - I'll show you have to install it on your computer for free!
  • There is a 30-day money back guarantee of this Udemy course.
  • Why not have a look at the curriculum below and see what you can learn?

About This Udemy Course

The following is the full official course description for 70-461, 761: Querying Microsoft SQL Server with Transact-SQL as published on Udemy by instructor Phillip Burton, I Do Data Limited. It covers the curriculum structure, teaching methodology, and topic scope for this IT & Software course.

Previously available as seven separate courses, now presented in one big course. Reviews "The instructor explain the things in great details. Very easy to follow." - Linda Shen "Excellent course, valuable lessons, very well taught at a great pace." - Shane Tanberg "Must get tutorial. Love it" - Hayford I Osumanu "Perfect step by step guide to learning. Best I've seen." - Charles Schweiger "This course is very well thought out. Its one of the better 70-461 courses on Udemy." - Isrrael M This course is the foundation for the Microsoft Certificate 70-461: "Querying Microsoft SQL Server 2012" and 70-761 "Querying Data with Transact-SQL". Please noe - these certificates are no longer being offered by Microsoft. However, the exam requirements allow you to have a good understanding of T-SQL. It also will help with the current exams DP-300 (Azure Database Administrator Associate) and DP-600 (Implementing Analytics Solutions Using Microsoft Fabric) Please note: This course is not affiliated with, endorsed by, or sponsored by Microsoft. Session 1 The basics presented are: how to install SQL Server, and how to create and drop tables. We then try to create a more advanced table, but find that we need to know more about data types - so we go into some detail about data types and data functions, the foundation of T-SQL. Session 2 We'll create tables which use these, and then INSERT some data into them. Then we'll write queries which will retrieve and summary this data, using SELECT, FROM, WHERE, GROUP BY, HAVING and ORDER BY. We'll then JOIN these tables together to find where we are missing data and where we have inconsistent data. We'll then UPDATE and DELETE data from the tables. Session 3 We'll now use that data to create views, which enable us to store these SELECT queries for future use, and triggers, which allow for code to be automatically run when INSERTing, DELETEing or UPDATEing data. We'll look at the database that we developed in session 2, and see what is wrong with it. We'll add some constraints, such as UNIQUE, CHECK, PRIMARY KEY and FOREIGN KEY constraints, to stop erroneous data from being added some data. Session 4 We will further encapsulate our routines by creating procedures, allowing us to EXECUTE parameterised commands with just one statement, and we'll add some error handling with TRY, CATCH and THROW. We'll also combine datasets together, by looking at UNION and UNION ALL, INTERSECT and EXCEPT, CASE, ISNULL and Coalesce, and the mighty MERGE statement. Session 5 We'll will now be creating aggregate queries. We'll be reviewing the ranking functions ROW_NUMBER, RANK, DENSE_RANK and NTILE. We'll look at the 8 analytic functions news to SQL Server 2012, such as LAG, LEAD, FIRST_VALUE and LAST_VALUE. We'll look at alternative ways of grouping and adding totals, using ROLLUP, CUBE, GROUPING SETS and GROUPING_ID. We'll also look at the geometry and geography data types, plotting locations on a grid, together with functions and aggregates. Session 6 We'll will now be creating sub-queries and correlated subqueries, where the results of the subquery depend on the main query. We'll be looking at Common Table Expressions using the WITH statement, and we'll be using what we have learned to solve a common business problem. We'll be looking at functions, including the three different types of User Defined Functions (UDF): scalar functions, inline table functions, and multi-statement table functions. We'll then look at synonyms and dynamic SQL, and the use of GUIDs. We'll also look at sequences. We'll have a look at XML and, for SQL Server 2016 and later, we'll examine JSON and Temporal Tables. Session 7 In this session we'll be looking at transactions, seeing how to explicitly start and end them, and finding out how they can block other users in the database. Then we'll see about how to indexes and their role in optimising queries. We'll also see how we can use Dynamic Management Views to see how we can improve our use of indexes. We'll then look at how to write a cursor, and when to use this row-based operation, and the impact of using scalar UDFs. No prior knowledge is required - I'll even show you how to install SQL Server on your computer for free! There are regular quizzes to help you remember the information. Once finished, you will know what how to manipulate numbers, strings and dates, and create database and tables, create tables, insert data and create analyses, and have an appreciation of how they can all be used in T-SQL.

Udemy Coupons Guide

A step-by-step guide explaining how to find and apply 100% OFF Udemy coupons — including when they expire and how to maximize savings.

Read Guide ↗

Compare Similar Courses

The courses below are in the same IT Certifications subcategory on Udemy. Compare ratings, prices, and topics to select the best fit for your learning goals.

View all →

Is This Course Worth It?

Expert review by Andrew Derek, Lead Course Reviewer at CoursesWyn. Last updated: .

Based on analysis of the curriculum structure, student engagement metrics, and verified rating data, 70-461, 761: Querying Microsoft SQL Server with Transact-SQL is a high-value resource for learners seeking to build skills in IT & Software. Taught by Phillip Burton, I Do Data Limited on Udemy, the 28h 30m course provides a structured progression from foundational concepts to advanced IT Certifications techniques — making it suitable for learners at all levels. The current coupon reduces the price by 95%, from $199.99 to $10.99, removing the primary financial barrier to enrollment.

What We Like (Pros)

The following advantages were identified:

  • Verified 95% price reduction makes this course accessible on any budget.
  • Aggregate student rating of 4.5 out of 5 indicates high satisfaction.
  • Includes an official Udemy completion certificate and lifetime access.

Keep in Mind (Cons)

The following limitations should be considered:

  • The depth of IT Certifications coverage may be challenging for newcomers.
  • Lifetime access is contingent on the Udemy platform's operation.
  • Hands-on projects require additional time beyond video watch time.

Andrew Derek

Lead Reviewer

View credentials →

"Given the 95% price reduction and verified 4.5-star rating, 70-461, 761: Querying Microsoft SQL Server with Transact-SQL represents one of the strongest value propositions currently available in IT & Software. Enrollment is recommended while this coupon remains active."

Final Verdict: Worth It

Course Rating Summary

70-461, 761: Querying Microsoft SQL Server with Transact-SQL holds an aggregate rating of 4.5 out of 5 based on 95,482 student reviews on Udemy. The distribution below shows the approximate percentage of students who gave each star rating.

4.5

95,482 Verified Ratings

5 stars
90%
4 stars
15%
3 stars
6%
2 stars
2%
1 star
1%

* Rating distribution is approximated from the aggregate score. Sourced from Udemy. Last verified: .

Instructor Profile

The following section provides background information on Phillip Burton, I Do Data Limited, the instructor responsible for creating and maintaining 70-461, 761: Querying Microsoft SQL Server with Transact-SQL on Udemy.

70-461, 761: Querying Microsoft SQL Server with Transact-SQL is taught by Phillip Burton, I Do Data Limited, a Udemy instructor specializing in IT & Software. For the full instructor biography, professional credentials, and a complete list of their courses, visit the official instructor profile on Udemy.

  • Instructor Name: Phillip Burton, I Do Data Limited

  • Subject Area: IT & Software

  • Teaching Approach: Practical, project-based instruction focused on real-world application of IT Certifications skills.

Coupon Help Center

A step-by-step walkthrough showing exactly how to apply a Udemy coupon at checkout — including common issues and how to resolve them.

How to Redeem ↗

Frequently Asked Questions

The following questions and answers cover the most common queries about 70-461, 761: Querying Microsoft SQL Server with Transact-SQL, its coupon code, pricing, and enrollment process. All answers are based on verified data from Udemy as of .

Is there a verified discount coupon for 70-461, 761: Querying Microsoft SQL Server with Transact-SQL?

Yes. A verified Udemy coupon for 70-461, 761: Querying Microsoft SQL Server with Transact-SQL is available on this page, reducing the price from $199.99 to $10.99 — a saving of $189.00 (95% OFF). The coupon was last verified on March 26, 2026.

How do I apply the 70-461, 761: Querying Microsoft SQL Server with Transact-SQL coupon code?

Click the "Redeem Coupon" button on this page. The 95% discount is automatically applied to the Udemy checkout link. No manual coupon entry is needed.

How long is the 70-461, 761: Querying Microsoft SQL Server with Transact-SQL course on Udemy?

70-461, 761: Querying Microsoft SQL Server with Transact-SQL consists of 28h 30m of on-demand video. Udemy provides lifetime access to enrolled students, allowing you to revisit all content at any time after purchase.

What skills will I gain from 70-461, 761: Querying Microsoft SQL Server with Transact-SQL?

70-461, 761: Querying Microsoft SQL Server with Transact-SQL, taught by Phillip Burton, I Do Data Limited on Udemy, covers the following competencies: create tables in a database and ALTER columns in the table. ; Know what data type to use in various situations, and use functions to manipulate date, number and string data values. ; retrieve data using SELECT, FROM, WHERE, GROUP BY, HAVING and ORDER BY. . These skills are delivered through 28h 30m of structured IT Certifications content, enabling learners to apply knowledge immediately after each module.

What is the 70-461, 761: Querying Microsoft SQL Server with Transact-SQL Udemy course?

70-461, 761: Querying Microsoft SQL Server with Transact-SQL is a 28h 30m online course on Udemy, created and taught by Phillip Burton, I Do Data Limited. It covers IT & Software topics and holds a 4.5-star rating from 95,482 enrolled students. Use the verified coupon on this page to access it at $10.99 (95% OFF the regular $199.99 price).
Andrew Derek

Andrew Derek

Expert Reviewer

Andrew Derek is a lead editor and course analyst at CoursesWyn with over 8 years of experience in online education and digital marketing. He meticulously audits every Udemy coupon and course syllabus to ensure students get the highest quality learning materials at the best possible price.

Contact Andrew Verified by CoursesWyn Editorial Team

The following IT & Software courses on Udemy currently have active verified coupons. These are the most recently updated deals in this category.

View All
Apache Kafka Series - Kafka Security | SSL SASL Kerberos ACL
★ Top Rated 🔥 Popular
4h
Mar 6, 2026 Apache Kafka

Apache Kafka Series - Kafka Security | SSL SASL Kerberos ACL

By Gerd Koenig, Conduktor Kafkademy, Stephane Maarek

Hands-On Course - Kafka Security Setup in AWS with SSL Encryption & Authentication, SASL Kerberos, ACL in Zookeeper

4.7
17,959+
$129.99 $10.99
92% OFF Verified
Machine Learning Bootcamp: Python, Projects & Deployment
★ Top Rated
66h 30m
Jan 31, 2026 Machine Learning

Machine Learning Bootcamp: Python, Projects & Deployment

By Siddhardhan S

Learn Python, Math, Machine Learning, Build Real-World Projects & Deploy ML Apps on AWS

5
143+
$99.99 $9.99
90% OFF Verified
PowerShell Mastery: Script, Automate & Succeed + 75 Projects
20h 30m
Jan 22, 2026 PowerShell

PowerShell Mastery: Script, Automate & Succeed + 75 Projects

By Nerd Academy

★ 20+ Hours Of Content ★ 75 Hands-On Exercises – Master PowerShell 5.1 / 7 - Including Advanced Scripting / Automation

4.6
4,369+
$99.99 $9.99
90% OFF Verified
Basics to Advanced: Azure Synapse Analytics Hands-On Project
21h 30m
Dec 29, 2025 Azure Synapse Analytics

Basics to Advanced: Azure Synapse Analytics Hands-On Project

By Shanmukh Sattiraju

Build complete project only with Azure Synapse Analytics focused on PySpark includes delta lake and spark Optimizations

4.5
4,049+
$99.99 $9.99
90% OFF Verified