5 lines
194 B
MySQL
5 lines
194 B
MySQL
|
/*14. Write a query to create a view that shows the number of orders in each day.*/
|
||
|
CREATE VIEW dateord(ord_date, odcount)
|
||
|
AS SELECT ord_date, COUNT (*)
|
||
|
FROM orders
|
||
|
GROUP BY ord_date;
|