Microsoft Querying Data with Transact-SQL - 070-761

Microsoft 070-761 test insides dumps
  • Exam Code: 070-761
  • Exam Name: Querying Data with Transact-SQL
  • Updated: Sep 20, 2026
  • Q & A: 205 Questions and Answers
Already choose to buy "PDF"
Price: $59.99 

About Microsoft Querying Data with Transact-SQL : 070-761 exam dumps

Download once, practice offline anywhere. The Microsoft Querying Data with Transact-SQL APP from VerifiedDumps keeps up with the latest test content — 205 practice questions for the 070-761 exam in 2026.

Microsoft 070-761 Exam Overview:

Certification Vendor:Microsoft
Exam Name:Querying Data with Transact-SQL
Exam Number:70-761
Passing Score:700/1000
Exam Price:$165 USD
Certificate Validity Period:No fixed expiration for earned legacy certification; exam retired on January 31, 2021
Exam Format:Multiple choice, Hot area, Drag and drop, Build list, Active screen, Multiple response, Short answer, Review screen
Exam Duration:120 minutes
Related Certifications:MCSA: SQL 2016 Database Development
Available Languages:French, Chinese (Simplified), Russian, Chinese (Traditional), Japanese, English, Portuguese (Brazil), German
Real Exam Qty:40-60
Sample Questions:Free Download Pass 070-761 Exam Cram
Exam Way:Pearson VUE testing center or online proctored delivery when available; the exam is retired and no longer available for registration.
Pre Condition:No formal prerequisite exam. Intended for SQL Server database administrators, system engineers, and developers with two or more years of experience writing Transact-SQL queries. Exam 70-762 was also required to earn MCSA: SQL 2016 Database Development.

Microsoft 070-761 Exam Syllabus Topics:

SectionWeightObjectives
Topic 1: Query data with advanced Transact-SQL components30-35%- Query temporal and non-relational data
  • 1. Query XML data
  • 2. Query temporal tables
  • 3. Output results as XML or JSON
  • 4. Query JSON data
- Group and pivot data by using queries
  • 1. Use PIVOT and UNPIVOT
  • 2. Use grouping sets
  • 3. Use ROLLUP and CUBE
- Query data by using table expressions
  • 1. Use views
  • 2. Use inline table-valued functions
  • 3. Use common table expressions
  • 4. Use derived tables
- Query data by using subqueries and APPLY
  • 1. Use APPLY
  • 2. Use EXISTS and NOT EXISTS
  • 3. Use correlated and non-correlated subqueries
Topic 2: Program databases by using Transact-SQL25-30%- Create database programmability objects by using Transact-SQL
  • 1. Create views
  • 2. Create stored procedures
  • 3. Create user-defined functions
- Implement data types and NULLs
  • 1. Use implicit and explicit conversions
  • 2. Handle NULL values
  • 3. Choose appropriate data types
- Implement error handling and transactions
  • 1. Use TRY...CATCH
  • 2. Implement transactions
  • 3. Manage transaction isolation
  • 4. Use THROW and RAISERROR
Topic 3: Manage data with Transact-SQL40-45%- Create Transact-SQL SELECT queries
  • 1. Identify queries that return expected results based on table structure or data
  • 2. Construct results from multiple queries using set operators
  • 3. Write queries to satisfy business requirements
  • 4. Distinguish between UNION and UNION ALL behavior
  • 5. Identify proper SELECT query structure
- Query multiple tables by using joins
  • 1. Write queries using outer joins
  • 2. Write queries using inner joins
  • 3. Write queries using cross joins
  • 4. Handle NULL values in join columns
  • 5. Write queries using self joins
- Modify data
  • 1. Use the OUTPUT statement
  • 2. Write DELETE statements
  • 3. Write UPDATE statements
  • 4. Write INSERT statements
- Implement functions and aggregate data
  • 1. Use aggregate functions
  • 2. Use ranking functions
  • 3. Use scalar functions
  • 4. Use GROUP BY and HAVING

070-761 Exam FAQ — Measure Your Ability

Upon successful payment, our system emails the Microsoft Querying Data with Transact-SQL material automatically within about a minute, with 24/7 help if nothing arrives within 2 hours. If you fail the corresponding 070-761 exam within 60 days of purchase, we refund the full amount: send a scanned enrollment slip plus the official Score Report PDF within 2 days of the exam, processed within 7 days. Excluded: exams within 3 days of purchase, candidate names that don't match the payer, and free or expired products. Or exchange for two equal-value products free.

No formal prerequisite exam. Intended for SQL Server database administrators, system engineers, and developers with two or more years of experience writing Transact-SQL queries. Exam 70-762 was also required to earn MCSA: SQL 2016 Database Development. Eligibility rules change over time, so verify the current requirements on the official page before registering.

The Microsoft Querying Data with Transact-SQL is Microsoft's certification exam for MCP, at the Associate level. Employers read it as a measure of individual ability in routine technical work. Related credentials include MCSA: SQL 2016 Database Development.

$165 USD per attempt, 700/1000 to pass. Retakes cost the full fee — save time and money by preparing with the 205 practice questions for the 070-761 exam at VerifiedDumps.

120 minutes for 40-60 questions. Practice anytime anywhere with the VerifiedDumps APP — steady daily sessions build the pacing you need.

Yes — we provide the free PDF demo of the Microsoft Querying Data with Transact-SQL dumps so you can look at the content and gain a further understanding before paying. Purchases include 365 days of free updates by email; renew afterward at 50% off.

The Microsoft Querying Data with Transact-SQL blueprint spans 3 domains — including Manage data with Transact-SQL (40-45%), Query data with advanced Transact-SQL components (30-35%), Program databases by using Transact-SQL (25-30%). Our material stays closely linked to these knowledge points; the complete outline above lists every subtopic.

Microsoft Querying Data with Transact-SQL Sample Questions:

Question #1

You have a table that was created by running the following Transact-SQL statement:

You need to query the Courses table and return the result set as JSON. The output from the query must resemble the following format:

  • A. SELECT CourseID AS 'Course ID', Course AS Name
    FROM Courses
    FOR JSON AUTO, INCLUDE_NULL_VALUES('Courses')
  • B. SELECT CourseID AS [Course ID], Course as Name
    FROM Courses
    FOR JSON PATH('Courses')
  • C. SELECT CourseID AS [Course ID], Course AS Name
    FROM Courses
    FOR JSON AUTO, ROOT('Courses')
  • D. SELECT CourseID AS 'Course ID', Course AS Name
    FROM Courses
    FOR JSON ROOT('Courses')
Reveal Solution  Discussion  0

Correct Answer: A  🗳️

Explanation: Only visible for VerifiedDumps members. You can sign-up / login (it's free).

Question #2

You have a database that contains the following tables.

You need to create a query that lists the lowest-performing salespersons based on the current year-to-date sales period. The query must meet the following requirements:
- Return a column named Fullname that includes the salesperson FirstName, a space, and then LastName.
- Include the current year-to-date sales for each salesperson.
- Display only data for the three salespersons with the lowest year-to-year sales values.
- Exclude salespersons that have no value for TerritoryID.
Construct the query using the following guidelines:
- Use the first letter of a table name as the table alias.
- Use two-part column names.
- Do not surround object names with square brackets.
- Do not use implicit joins.
- Use only single quotes for literal text.
- Use aliases only if required.

Part of the correct Transact-SQL has been provided in the answer area below. Enter the code in the answer area that resolves the problem and meets the stated goals or requirements. You can add code within the code that has been provided as well as below it.

Use the Check Syntax button to verify your work. Any syntax or spelling errors will be reported by line and character position.

Reveal Solution  Discussion  0

Correct Answer:

Please see explanation
Explanation
SELECT TOP (3) LastName, S.SalesYTD
FROM Person as P INNER JOIN SalesPerson AS S
ON P.PersonID = S.SalesPersonID
WHERE S.TerritoryID IS NOT NULL
ORDER BY S.SalesYTD DESC
On ordering: ASC | DESC
Specifies that the values in the specified column should be sorted in ascending or descending order. ASC sorts from the lowest value to highest value. DESC sorts from highest value to lowest value. ASC is the default sort order. Null values are treated as the lowest possible values.
References:
https://msdn.microsoft.com/en-us/library/ms189463.aspx

Question #3

Note: This question is part of a series of questions that use the same scenario. For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.
You query a database that includes two tables: Project and Task. The Project table includes the following columns:

The Task table includes the following columns:

Users report performance issues when they run the following query:

You need to improve query performance and limit results to projects that specify an end date.
How should you complete the Transact-SQL statement? To answer, select the appropriate Transact-SQL segments in the answer area.

Reveal Solution  Discussion  0

Correct Answer:


Explanation

Wildcard character %: Any string of zero or more characters.
For example: If the LIKE '5%' symbol is specified, the Database Engine searches for the number 5 followed by any string of zero or more characters.
References: https://docs.microsoft.com/en-us/sql/t-sql/language-elements/like-transact-sql

Question #4

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section. You will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a database that tracks orders and deliveries for customers in North America. The database contains the following tables:
Sales.Customers

Application.Cities

Sales.CustomerCategories

Your company is developing a new social application that connects customers to each other based on the distance between their delivery locations.
You need to write a query that returns the nearest customer.
Solution: You run the following Transact-SQL statement:

The variable @custID is set to a valid customer.
Does the solution meet the goal?

  • A. No
  • B. Yes
Reveal Solution  Discussion  0

Correct Answer: A  🗳️

Question #5

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are creating indexes in a data warehouse.
You have a dimension table named Table1 that has 10,000 rows. The rows are used to generate several reports.
The reports join a column that is the primary key.
The execution plan contains bookmark lookups for Table1.
You discover that the reports run slower than expected.
You need to reduce the amount of time it takes to run the reports.
Solution: You create a nonclustered index on the primary key column that does NOT include columns.
Does this meet the goal?

  • A. NO
  • B. YES
Reveal Solution  Discussion  0

Correct Answer: B  🗳️

Explanation: Only visible for VerifiedDumps members. You can sign-up / login (it's free).

What Clients Say About Us

I bought three exam materials at one time, and passed all of them in this month. Cool! And i am going to buy another one.

Moore Moore       5 star  

Actually I was doubt the accuracy of 070-761 dumps pdf at first, but when I finished the test, I relized that I chose a right study material.

Orville Orville       4.5 star  

070-761 practice dumps on VerifiedDumps are valid, i passed my exam today! Big thanks!

Moira Moira       4.5 star  

Taking Exams pre to next level Brightening Success Chances

Lee Lee       4 star  

Thanks a lot VerifiedDumps I have found myself pretty much confident when I took the 070-761 actual exam.

Joshua Joshua       4 star  

Passed 070-761 with the help of VerifiedDumps ! The reliable, simplified and to the point material of VerifiedDumps helped me learn all concepts

Michaelia Michaelia       4 star  

VerifiedDumps pdf file for Microsoft 070-761 exam is amazing. Includes the best preparatory stuff for 070-761 exam. I studied from it for 2-3 days and passed the exam with 95% marks. Great feature by VerifiedDumps. Highly suggested.

Jessica Jessica       4.5 star  

But now I am so excited as VerifiedDumps exam questions are exactly the same as the actual exam subjects.

Clark Clark       4 star  

Passing Microsoft Microsoft 070-761 with the help of VerifiedDumps Dumps was my second experience. I remained both the times successful

Claude Claude       5 star  

I bought 070-761 exam dumps with my friends from you, and we both passed 070-761 exam, thank you very much!

Paula Paula       4 star  

I also want to suggest all to use these products and see their dream come true.

Joyce Joyce       4.5 star  

The 070-761 test answers are valid. It is suitable for short-time practice before exam. I like it.

Cornelius Cornelius       5 star  

070-761 dumps pdf is really helpful for me. Looking forward to the good result of the test...

Jo Jo       4.5 star  

Many of my classmates choose your 070-761 exam questions, so i just bought the Q&As and passed the exam as them. It is good to follow the big trend.

Broderick Broderick       4 star  

LEAVE A REPLY

Your email address will not be published. Required fields are marked *

Quality and Value

VerifiedDumps Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.

Tested and Approved

We are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.

Easy to Pass

If you prepare for the exams using our VerifiedDumps testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.

Try Before Buy

VerifiedDumps offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.

Our Clients