Hello,
I have been wrecking my brain into this one.
I have a table that contains order number, operation #, quantity received, and hours.
for example
order# operation# qtyrc hrs
1234 100 10 2
1234 120 10 3
1234 130 10 2.5
I can get this, no problme. I am looking of a way to get this:
order# operation# qtyrc hrs
1234 100 10 2
1234 120 3
1234 130 2.5
Is there a way to do this with SQL or would I need anything else to accomplish the task?
please any healp is much appreciate it.
Thank you!!
I have been wrecking my brain into this one.
I have a table that contains order number, operation #, quantity received, and hours.
for example
order# operation# qtyrc hrs
1234 100 10 2
1234 120 10 3
1234 130 10 2.5
I can get this, no problme. I am looking of a way to get this:
order# operation# qtyrc hrs
1234 100 10 2
1234 120 3
1234 130 2.5
Is there a way to do this with SQL or would I need anything else to accomplish the task?
please any healp is much appreciate it.
Thank you!!