Hi,
I need to make some changes to my database and I was wondering if there is a faster way of doing.
- I have two tables (for example Table1 and Table2)
- Table1 has a field called TF1
- Table2 has two fields called TF2 and TF3
in TF1 there is the following code
<div class="wrap">
XXXXXXXXXXXXXX
XXXXXXXXXXXXXX
</div>
<div class="wrap-two">
YYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYY
</div>
What I'm trying to do is I need to move all the content within <div class="wrap"> to TF2 and move all the content within <div class="wrap-two"> into TF3
So at the end TF1 would be empty, TF2 would have all the content that was previously in div wrap and TF3 would have all the content that was previously in div wrap-two.
to sum up: move all the content within "wrap" from TF1 to TF2 and move all the content within "wrap-two" from TF1 to TF3.
I hope this makes sense.
I have about 2000 entries, so if I was to do this manually it would probably take me a year.
Please let me know if there is some kind of a statement for this.
Thank you in advance.
I need to make some changes to my database and I was wondering if there is a faster way of doing.
- I have two tables (for example Table1 and Table2)
- Table1 has a field called TF1
- Table2 has two fields called TF2 and TF3
in TF1 there is the following code
<div class="wrap">
XXXXXXXXXXXXXX
XXXXXXXXXXXXXX
</div>
<div class="wrap-two">
YYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYY
</div>
What I'm trying to do is I need to move all the content within <div class="wrap"> to TF2 and move all the content within <div class="wrap-two"> into TF3
So at the end TF1 would be empty, TF2 would have all the content that was previously in div wrap and TF3 would have all the content that was previously in div wrap-two.
to sum up: move all the content within "wrap" from TF1 to TF2 and move all the content within "wrap-two" from TF1 to TF3.
I hope this makes sense.
I have about 2000 entries, so if I was to do this manually it would probably take me a year.
Please let me know if there is some kind of a statement for this.
Thank you in advance.