Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 WordPress。我使用以下方法批量更改了 wp_posts 表:
UPDATE wp_posts SET someField = REPLACE(someField,'term1','term2')
我的问题是:如何进行类似的更改,但从特定日期到第一次发布。
对不起,如果我的英语不是很好!
您可以使用WHERE这样的子句:
WHERE
UPDATE wp_posts SET someField = REPLACE(someField,'term1','term2') WHERE post_date < '2013-01-01'
应在哪里'2013-01-01'替换为相关日期。请注意,这将更改发布日期早于 2013 年 1 月 1 日的所有记录。
'2013-01-01'