SQL Problem of the day #6
Problem statement: Find the maximum number of items that customers can purchase within their budget.
Table creation and data insertion scripts:
--Table : Product
CREATE TABLE product(
id int,
name varchar(30),
cost decimal(10,2)
);
INSERT INTO p...
ishwarkoki.hashnode.dev2 min read