Hello,
I have two tables "rout" and "order"
My "rout" table contains ordernum, opnum, time
my "order" table contains ordernum, qty.
When I join both tables I would like to be able to get the "qty" for the fist "opnum" when I try to do this I get the "qty" for all the different "opnum"
I tried min(opseq) but when I group it it sums all the "qty" for each "opseq"
Not sure how to go about this one any help is appreciated
I have two tables "rout" and "order"
My "rout" table contains ordernum, opnum, time
my "order" table contains ordernum, qty.
When I join both tables I would like to be able to get the "qty" for the fist "opnum" when I try to do this I get the "qty" for all the different "opnum"
I tried min(opseq) but when I group it it sums all the "qty" for each "opseq"
Not sure how to go about this one any help is appreciated