Database Assignment
Database Assignment
Customers Table:
Retrieve the customers who have spent more than $50 in a single order.
Table: Orders
+----+---------+------------+
| ID | Item | Customer |
+----+---------+------------+
| 1 | Laptop | 2 |
| 2 | Mouse | 1 |
| 3 | Keyboard| 3 |
+----+---------+------------+
Table: Departments
+----+------------+
| ID | Department |
+----+------------+
| 1 | Sales |
| 2 | IT |
| 3 | Finance |
+----+------------+