SQL - Views
You try to create a view with this SQL:
But you get a syntax error. What is the likely cause?
CREATE VIEW RecentOrders AS SELECT order_id, order_date FROM Orders WHERE order_date > '2023-01-01'But you get a syntax error. What is the likely cause?
