How would you do that?
I would define a simple table, like this:
Item | Default_Qty |
Milk | 1 |
So then what?? How do you turn that into SQL? Well, that's easy, right?
First you define the table:
create table groceries
(
Item varchar(50)
, Default_Qty int
);
And then you insert some sample data:
insert into groceries (item, default_qty) values ('Milk', 1);