table 1 table 2
+---------+------------+ +---------+------------+
| post_id | meta_value | | ID | post_title |
+---------|------------+ +---------|------------+
| 1 | value_a | | 1 | title_abc |
+---------|------------+ +---------|------------+
| 2 | value_b | | 2 | title_xyh |
+---------|------------+ +---------|------------+
| 3 | value_c | | 3 | title_jer |
+---------|------------+ +---------|------------+
| ..... | ......... | | ..... | ....... |
+---------|------------+ +---------|------------+
| 999 | value_xyzw | | 999 | title_bhw |
+---------|------------+ +---------|------------+
I have 2 tables. I try to replace the records from post_title (table 2) with meta_value {table 1).
Example:
value_a replace title_abc
value_b replace title_xyh
value_c replace title_jer
............
etc
Thank you!