I want to put some same value in some fields where data is not present, for that do I need to query each field and see if there is data present or not and accordingly put the data, or there is some other work arround.
Like
Name Age City
N 22 J
K K
23 L
Here I want to put data on those fields which don't have data otherwise I don't want to touch tghose fields. After inserting it should look like
Name Age City
N 22 J
K Gar K
Gar 23 L
There is no validation for the datatype, all are of same datatype. How should I write the query in that case..