Wordpress在 * wp_posts * 表
中有2列我想用post_date的值更新/更改/替换post_modified值,但是不知道如何知道我需要一个sql查询。
答案 0 :(得分:2)
也许是这样的:
UPDATE wp_posts
SET post_modified= post_date
答案 1 :(得分:1)
Update wp_posts
set w1.post_modified = w2.post_date
from wp_posts w1, wp_posts w2
where w1.IdCol = w2.IdCol