SQL - Views
Given the table
Orders with columns order_id, customer_id, and amount, what will the following SQL view return?CREATE VIEW LargeOrders AS SELECT order_id, amount FROM Orders WHERE amount > 1000;SELECT * FROM LargeOrders;