What would the sql command be to copy the 'caption' field values for every imaged in the database to the 'description' field ? Not sure how clear that question is so to explain, I have manually entered values in the 'caption' field for every image via plogger admin and I would like to copy those values into the 'description' field.
Why did you want to change the captions from the descriptions? Are you wanting to move the data from the captions to the descriptions and clear out the captions at the same time, or do you want a copy of the same data in both fields? Just curious as it would change the SQL query slightly.
sorry I didn't get back to you, I completely lost this thread amongst the others. The SQL query you would need to do is as follows (assuming your Plogger tables are prefixed by the default 'plogger_'): UPDATE `plogger_pictures` SET `description` = `caption`