My table looks like this...
Field1|Field2|Field3|Field4
RCD00 |Null |data3 |Null
RCD01 |data2 |Null |Null
RCD01 |Null |Null |data4
RCD01 |Null |data3 |Null
I need to run some sort of routine that will then look at all rows and where Field1 matchs, it will combine the data fields and "recommit" the data so that they table looks now like this...
Field1|Field2|Field3|Field4
RCD00 |Null |data3 |Null
RCD01 |data2 |data3 |data4
Is this even possible?
I'm not simply talking about a query, I want the entire table re-written each time this process is run.
Field1|Field2|Field3|Field4
RCD00 |Null |data3 |Null
RCD01 |data2 |Null |Null
RCD01 |Null |Null |data4
RCD01 |Null |data3 |Null
I need to run some sort of routine that will then look at all rows and where Field1 matchs, it will combine the data fields and "recommit" the data so that they table looks now like this...
Field1|Field2|Field3|Field4
RCD00 |Null |data3 |Null
RCD01 |data2 |data3 |data4
Is this even possible?
I'm not simply talking about a query, I want the entire table re-written each time this process is run.