MCSA Querying Microsoft SQL Server 2012/2014

Here you have the best Microsoft 70-461 practice exam questions

  • You have 265 total questions across 53 pages (5 per page)
  • These questions were last updated on February 25, 2026
  • This site is not affiliated with or endorsed by Microsoft.
Question 1 of 265

You develop a Microsoft SQL Server database that supports an application. The application contains a table that has the following definition:

CREATE TABLE Inventory -
(ItemID int NOT NULL PRIMARY KEY,
ItemsInStore int NOT NULL,
ItemsInWarehouse int NOT NULL)
You need to create a computed column that returns the sum total of the ItemsInStore and ItemsInWarehouse values for each row.
Which Transact-SQL statement should you use?
Answer

Suggested Answer

The suggested answer is A.

The correct Transact-SQL statement for creating a computed column that returns the sum total of the ItemsInStore and ItemsInWarehouse values is 'ALTER TABLE Inventory ADD TotalItems AS ItemsInStore + ItemsInWarehouse'. This syntax correctly defines a computed column named TotalItems that calculates the sum of ItemsInStore and ItemsInWarehouse for each row in the Inventory table.

Community Votes

No votes yet

Join the discussion to cast yours

Question 2 of 265

You develop a Microsoft SQL Server database. You create a view from the Orders and OrderDetails tables by using the following definition.
Exam 70-461: Question 2 - Image 1
You need to improve the performance of the view by persisting data to disk. What should you do?
Answer

Suggested Answer

The suggested answer is D.

To improve the performance of a view by persisting data to disk in SQL Server, you should create an indexed view. Creating a clustered index on the view materializes the view's data and stores it on disk, which can significantly improve performance especially for complex queries. This is done by creating a clustered index on the view. Other options like triggers (INSTEAD OF or AFTER) or using WITH VIEW_METADATA do not serve the purpose of persisting data to disk.

Community Votes

No votes yet

Join the discussion to cast yours

Question 3 of 265

Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.
You develop a database for a travel application. You need to design tables and other database objects.
You create the Airline_Schedules table.
You need to store the departure and arrival dates and times of flights along with time zone information.
What should you do?
Answer

Suggested Answer

The suggested answer is I.

To store both date and time along with time zone information, the DATETIMEOFFSET data type is appropriate. It includes the date, time, and the time zone offset, which allows the database to store the complete datetime value including time zone information. This aligns with the requirements of handling departure and arrival times in a travel application that operates across multiple time zones.

Community Votes

No votes yet

Join the discussion to cast yours

Question 4 of 265

Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.
You develop a database for a travel application. You need to design tables and other database objects.
You create a stored procedure. You need to supply the stored procedure with multiple event names and their dates as parameters.
What should you do?
Answer

Suggested Answer

The suggested answer is E.

Community Votes

No votes yet

Join the discussion to cast yours

Question 5 of 265

SIMULATION -
You have a view that was created by using the following code:
Exam 70-461: Question 5 - Image 1
You need to create an inline table-valued function named Sales.fn_OrdersByTerritory, which must meet the following requirements:
✑ Accept the @T integer parameter.
✑ Use one-part names to reference columns.
Filter the query results by SalesTerritoryID.
Exam 70-461: Question 5 - Image 2
✑ Return the columns in the same order as the order used in OrdersByTerritoryView.
Part of the correct Transact-SQL has been provided in the answer area below. Enter the Transact-SQL in the answer area that resolves the problem and meets the stated goals or requirements. You can add Transact-SQL within the Transact-SQL segment that has been provided as well as below it.
Exam 70-461: Question 5 - Image 3
Exam 70-461: Question 5 - Image 4
Answer

Suggested Answer

About the Microsoft 70-461 Certification Exam

About the Exam

The Microsoft 70-461 (MCSA Querying Microsoft SQL Server 2012/2014) validates your knowledge and skills. Passing demonstrates proficiency and can boost your career prospects in the field.

How to Prepare

Work through all 265 practice questions across 53 pages. Focus on understanding the reasoning behind each answer rather than memorizing responses to be ready for any variation on the real exam.

Why Practice Exams?

Practice exams help you familiarize yourself with the question format, manage your time, and reduce anxiety on the test day. Our 70-461 questions are regularly updated to reflect the latest exam objectives.