51. Create a view called Big orders which stores all orders larger than Rs.4000.
CREATE VIEW big_orders AS
SELECT
*
FROM
orders
WHERE
ammount > 4000;
Output:

CREATE VIEW big_orders AS
SELECT
*
FROM
orders
WHERE
ammount > 4000;
