I know this may sound a little strange, but I was wondering if I could query an array or a temporary recordset with a table. Like if my array or recordset contained the following:
9/3/2002 0
9/6/2002 0
9/12/2002 0
9/15/2002 0
and my table contained
9/6/2002 50
9/12/2002 125
I would want my result to be
9/3/2002 0
9/6/2002 50
9/12/2002 125
9/15/2002 0
This is completely wacky, but I can't store 0 valued records in my db, but I want to be able to display them for the user in case they want to change the zero value to an actual quanity. Then, only save the non-zero values back to my db.
Anyway. I'd appreciate some input.
9/3/2002 0
9/6/2002 0
9/12/2002 0
9/15/2002 0
and my table contained
9/6/2002 50
9/12/2002 125
I would want my result to be
9/3/2002 0
9/6/2002 50
9/12/2002 125
9/15/2002 0
This is completely wacky, but I can't store 0 valued records in my db, but I want to be able to display them for the user in case they want to change the zero value to an actual quanity. Then, only save the non-zero values back to my db.
Anyway. I'd appreciate some input.