70-761 Exam Details

  • Exam Code
    :70-761
  • Exam Name
    :Querying Data with Transact-SQL
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :228 Q&As
  • Last Updated
    :Jan 21, 2022

Microsoft 70-761 Online Questions & Answers

  • Question 91:

    SIMULATION

    You have a database that contains the following tables.

    You need to create a query that returns each complaint, the names of the employees handling the complaint, and the notes on each interaction. The Complaint field must be displayed first, followed by the employee's name and the notes.

    Complaints must be returned even if no interaction has occurred. Construct the query using the following guidelines:

    Use two-part column names.

    Use one-part table names.

    Use the first letter of the table name as its alias.

    Do not Transact-SQL functions.

    Do not use implicit joins.

    Do not surround object names with square brackets.

    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.

    1 SELECT c.Complaint, e.Name, i.Notes 2 FROM Complaints c 3 JOIN __________________ 4 JOIN __________________

    Correct Answer. explanation

  • Question 92:

    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 table named Products that stores information about products your company sells. The table has a column named ListPrice that stores retail pricing information for products.

    Some products are used only internally by the company. Records for these products are maintained in the Products table for inventory purposes. The price for each of these products is $0.00. Customers are not permitted to order these

    products.

    You need to increase the list price for products that cost less than $100 by 10 percent. You must only increase pricing for products that customers are permitted to order.

    Solution: You run the following Transact-SQL statement:

    Does the solution meet the goal?

    A. Yes
    B. No

  • Question 93:

    SIMULATION

    You work for an organization that monitors seismic activity around volcanos. You have a table named GroundSensors. The table stored data collected from seismic sensors. It includes the columns describes in the following table:

    The database also contains a scalar value function named NearestMountain that returns the name of the mountain that is nearest to the sensor.

    You need to create a query that shows the average of the normalized readings from the sensors for each mountain. The query must meet the following requirements:

    Include the average normalized readings and nearest mountain name.

    Exclude sensors for which no normalized reading exists.

    Exclude those sensors with value of zero for tremor.

    Construct the query using the following guidelines:

    Use one part names to reference tables, columns and functions.

    Do not use parentheses unless required.

    Do not use aliases for column names and table names.

    Do not surround object names with square brackets.

    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.

    A. Check the answer below

  • Question 94:

    You have a database named DB1 that contains a temporal table named Sales.Customers.

    You need to create a query that returns the credit limit that was available to each customer in DB1 at the beginning of 2017.

    Which query should you execute?

    A. Option A
    B. Option B
    C. Option C
    D. Option D

  • Question 95:

    Note: This question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other questions in this series.

    Information and details provided in a question apply only to that question.

    You have a database that stores sales and order information.

    Users must be able to extract information from the tables on an ad hoc basis. They must also be able to reference the extracted information as a single table.

    You need to implement a solution that allows users to retrieve the data required, based on variables defined at the time of the query.

    What should you implement?

    A. the COALESCE function
    B. a view
    C. a table-valued function
    D. the TRY_PARSE function
    E. a stored procedure
    F. the ISNULL function
    G. a scalar function
    H. the TRY_CONVERT function

  • Question 96:

    Note: This question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other questions in this series. Information and details provided in a question apply only to that question.

    You have a database that contains tables named Customer_CRMSystem and Customer_HRSystem. Both tables use the following structure: The following records exist in the tables: Customer_CRMSystem

    Customer_HRSystem

    Records that contain null values for CustomerCode can be uniquely identified by CustomerName.

    You need to display distinct customers that appear in both tables.

    Which Transact-SQL statement should you run?

    A. Option A
    B. Option B
    C. Option C
    D. Option D
    E. Option E
    F. Option F
    G. Option G
    H. Option H

  • Question 97:

    SIMULATION

    You have a database that contains the following tables.

    You need to create a query that returns each complaint, the names of the employees handling the complaint, and the notes on each interaction. The Complaint field must be displayed first, followed by the employee's name and the notes. Complaints must be returned even if no interaction has occurred.

    Construct the query using the following guidelines:

    Use two-part column names.

    Use one-part table names.

    Use the first letter of the table name as its alias.

    Do not Transact-SQL functions.

    Do not use implicit joins.

    Do not surround object names with square brackets.

    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.

    1 SELECT c.Complaint, e.Name, i.Notes 2 FROM Complaints c 3 JOIN __________________ 4 JOIN __________________

    A. Check the answer below

  • Question 98:

    You need to create an indexed view that requires logic statements to manipulate the data that the view displays. Which two database objects should you use? Each correct answer presents a complete solution.

    A. a user-defined table-valued function
    B. a CRL function
    C. a stored procedure
    D. a user-defined scalar function

  • Question 99:

    Note: This question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other questions in this series. Information and details provided in a question apply only to that question.

    You have a database that contains tables named Customer_CRMSystem and Customer_HRSystem. Both tables use the following structure:

    The tables include the data below: Customer_CRMSystem

    Customer_HRSystem

    Records that contain null values for CustomerCode can be uniquely identified by CustomerName. You need to display customers who appear in both tables and have a non-null CustomerCode. Which Transact-SQL statement should you run?

    A. Option A
    B. Option B
    C. Option C
    D. Option D
    E. Option E
    F. Option F
    G. Option G
    H. Option H

  • Question 100:

    DRAG DROP

    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 on this series.

    You have a database that tracks orders and deliveries for customers in North America. System versioning is enabled for all tables. The database contains the Sales.Customers, Application.Cities, and Sales.CustomerCategories tables.

    Details for the Sales.Customers table are shown in the following table:

    Details for the Application.Cities table are shown in the following table:

    Details for the Sales.CustomerCategories table are shown in the following table:

    You are creating a report to measure the impact of advertising efforts that were designed to attract new customers. The report must show the number of new customers per day for each customer category, but only if the number of new customers is greater than five.

    You need to write the query to return data for the report.

    How should you complete the Transact-SQL statement? To answer, drag the appropriate Transact-SQL segments to the correct locations. Each Transact-SQL segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

    Select and Place:

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-761 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.