在phpmyadmin表products_description中,我想将字段"products_name"中的所有文本复制到字段"products_head_title_tag"中,但如果字段"product_head_title_tag"已经有一些文本,那么我不希望它复制它。如何做到这一点?
感谢
在尝试以下操作之前备份数据:
update products_description set products_head_title_tag = products_name WHERE products_head_title_tag IS NULL;