+--------+------+-------+-------+
| C1     |  C2  |  C3       C4  |
+--------+------+-------+------+
| Value1 | 1234 |  9876 |   A1  |
| Value2 | 1234 |  9876 |   A1  |
| Value3 | 1234 |  9876 |   A1  |
| Value4 | 1234 |  9876 |   A1  |
| Value1 |      |       |   B1  |
| Value2 |      |       |   B1  |
| Value3 |      |       |   B1  |
| Value4 |      |       |   B1  |
+-------+------+-------+------- +
I have a MySQL table with the above structure.I want to update the last four rows for column C2 & C3 with the same data as in the first 4 rows of column C2 & C3.This update has to be done using the same table multiple column data.
How can I achieve this?
 
     
     
    