Hi everybody,
I want to do following:
Take the information of movies field A and move it to the custom field B for every single movie I have in my database.
What I am thinking of is writing a short SQL like following:
UPDATE customfields_table C SET C.mycustomfield=(SELECT M.release FROM movies M);
The question is how to find out the right column and table names of the custom field (marked red)? Or is there an out-fo-the-box way to do what I am attempting to?