QuestionQ11
Prepare dataYou have a Fabric warehouse containing a table named Sales.Products. Sales.Products contains the following columns.

You need to write a T-SQL query that returns the following columns.

How should you complete the code?
Select
SELECT ProductID, (ListPrice, WholesalePrice, AgentPrice) AS HighestSellingPrice, (ListPrice, WholesalePrice, AgentPrice) AS TradePrice FROM Sales.Products;
Community Discussion