I’m doing it this way:
UPDATE products
SET products_image = (SELECT products_image
FROM products
WHERE products_id = 2)
WHERE products_id = 3;
…but get an error:
ERROR 1093 (HY000): You can’t specify target table ‘products’ for update in FROM clause
1 Answer