Hi, thanks for your help in advance.
I need to do a query that returns how many of a given part number were received that day. Our customer sends us orders for many parts and I need to create a report which summarized how many of each part number we received for that day. I can get a list of all the parts for a certain day like this:
select part_number from st_parts where received date like '10-MAY-01' order by part_number;
but what I really need is something that tells me HOW MANY of that part number I received that day.
I'm new to sql and have a reference book which points me toward a break/compute method, but I can't make it work.....any suggestions?
I need to do a query that returns how many of a given part number were received that day. Our customer sends us orders for many parts and I need to create a report which summarized how many of each part number we received for that day. I can get a list of all the parts for a certain day like this:
select part_number from st_parts where received date like '10-MAY-01' order by part_number;
but what I really need is something that tells me HOW MANY of that part number I received that day.
I'm new to sql and have a reference book which points me toward a break/compute method, but I can't make it work.....any suggestions?