A
Amin
So let's say I'm trying to figure out where work is sent to. I have five
fields: workload id, name, time (in numeric, not date/time), person sent to,
and the time that it took. Usually, ted wil select workload 'A' at 11 AM, and
then send it to bill after working it for five minutes.
So the record will look like:
A, ted, 110000, bill, 5
But sometimes, ted has to send it to jon, who then send it to bill.
So the records are:
B, ted, 100000, jon, 4
B, jon, 110000, bill, 0.5
What I would like to do is get rid of the second part of this transaction.
So my query would only return:
B, ted, 100000, jon, 4
This seems really easy, but I'm having a really hard time doing this. I know
the way to do this is to use the time (I want to keep the earliest time), but
I can't figure out how to put it in.
Thanks so much for any help on this one!
Amin
fields: workload id, name, time (in numeric, not date/time), person sent to,
and the time that it took. Usually, ted wil select workload 'A' at 11 AM, and
then send it to bill after working it for five minutes.
So the record will look like:
A, ted, 110000, bill, 5
But sometimes, ted has to send it to jon, who then send it to bill.
So the records are:
B, ted, 100000, jon, 4
B, jon, 110000, bill, 0.5
What I would like to do is get rid of the second part of this transaction.
So my query would only return:
B, ted, 100000, jon, 4
This seems really easy, but I'm having a really hard time doing this. I know
the way to do this is to use the time (I want to keep the earliest time), but
I can't figure out how to put it in.
Thanks so much for any help on this one!
Amin