QuestionQ61
Prepare dataYou have a Fabric warehouse containing a table named Sales.Orders. Sales.Orders contains the following columns.

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

How should you complete the code?
Select
SELECT OrderID, CustomerID, ProductID, (Weight, Quantity, 1) AS ChargedQuantity, (ListPrice, SalePrice) AS OrderPrice FROM Sales.Orders;
Community Discussion