If I wanted to run a query to title all uploaded images in a given album to the same phrase, what would the proper SQL query be?
UPDATE cpg15x_pictures SET title = 'new title' WHERE aid = '<enter album ID here>'
Perfect, thank you.
Would this work for the descriptions as well?
UPDATE cpg15x_pictures SET caption = 'new description' WHERE aid = 'Album ID';
It does. Solved.