i want to perform update query a table where i am holding "User Meta Info".
I want to update the meta_value corresponds to "userid" = 9, in which multiple meta_key can be there to update. (This is not wordpress database)
My table looks like this:
umeta_id userid meta_key meta_value
1 9 mobile 123324
2 9 address some address
3 9 city some city
4 9 country some country
5 9 occupation some details
6 9 website someurl
7 9 mobile 123324
8 9 address some address
9 9 city some city
10 10 country some country
11 10 occupation some details
12 10 website someurl
Please suggest some solution for this.