|
if I do this option.. the incorrect owner userid is 3 and the original/correct owner userid is 6.. so I would go with..
UPDATE pp_photos SET userid=6 WHERE userid=3;
UPDATE pp_comments SET userid=6 WHERE userid=3;
correct?
Also, can I then also do a ...
UPDATE pp_albums SET userid=6 WHERE userid=3;
To fix the albums? Would that be the correct code/query?
Thank you again for all of your help!
|