I have two tables as below:
abc:idicontimestamp
xyz:iddobabcIdicontimestamp
i want to update a icon value in xyz table with specific id. For this i am using below query.
update xyz t set image = (select image from abc t1 where id = t.abcId);
But this update all the values. Can any one please update this.