Reputation: 136
In phpmyadmin table products_description how can I copy the text from the field "products_name" to the field "products_head_title_tag"
Upvotes: 0
Views: 2451
Reputation: 1433
This is as simple as
UPDATE products_description SET products_head_title_tag = products_name;
Upvotes: 1