SQL - Views
Given the table
What will the query
Orders with columns OrderID, CustomerID, and Amount, and the view HighValueOrders defined as:CREATE VIEW HighValueOrders AS SELECT OrderID, Amount FROM Orders WHERE Amount > 1000;
What will the query
SELECT * FROM HighValueOrders; return?