Question: In mySQL: For each step below, show the queries and the result 1) -- Type the following command to create an index and then execute

In mySQL:

For each step below, show the queries and the result

1) -- Type the following command to create an index and then execute the query

CREATEINDEXcnameidx ONdbo.customers(cname);

2) Type in the following 3 commands below: select the three commands and choose the icon Display Estimated Execution Plan.

SELECT*FROMdbo.CUSTOMERS WHEREcname='Basics';

SELECT*FROMdbo.CUSTOMERS;

SELECT*FROMdbo.PRODUCTS;

3) Type in the following command;

SELECT*FROMAdventureWorksDW2014_mg.dbo.DimCustomer;

SELECT*INTO[YOURDB].dbo.dimCustomers fromAdventureWorksDW2014_mg.dbo.DimCustomer;

4) Type in the following commands;

SELECT*FROMAdventureWorksDW2014_mg.dbo.DimEmployee;

SELECT*FROMAdventureWorksDW2014_mg.dbo.FactSalesQuota;

SELECT*FROMAdventureWorksDW2014_mg.dbo.DimEmployee

INNERJOIN AdventureWorksDW2014_mg.dbo.FactSalesQuota

ONAdventureWorksDW2014_mg.dbo.FactSalesQuota.EmployeeKey=AdventureWorksDW2014_mg.dbo.DimEmployee.EmployeeKey;

5) Highlight the three commands above (4) and choose the icon Display Estimated Execution Plan.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!