John
John

Reputation: 136

copy text from one field to another field

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

Answers (1)

Tim
Tim

Reputation: 1433

This is as simple as

UPDATE products_description SET products_head_title_tag = products_name;

Upvotes: 1

Related Questions