I need to replace one value of a column to another.
Example :
No Update_count Update_time
1 0 2015-02-02 12:23:24
1 0 2015-02-02 12:23:24
1 0 2015-02-02 12:24:25
For a particular No and update count the time should be same , in this case i need to set Max(update_time ) as the time for all 3 records , Can someone help please.
Result should be like this :
No Update_count Update_time
1 0 2015-02-02 12:24:25
1 0 2015-02-02 12:24:25
1 0 2015-02-02 12:24:25
					Example :
No Update_count Update_time
1 0 2015-02-02 12:23:24
1 0 2015-02-02 12:23:24
1 0 2015-02-02 12:24:25
For a particular No and update count the time should be same , in this case i need to set Max(update_time ) as the time for all 3 records , Can someone help please.
Result should be like this :
No Update_count Update_time
1 0 2015-02-02 12:24:25
1 0 2015-02-02 12:24:25
1 0 2015-02-02 12:24:25
Comment