我需要删除特定类别的Wordpress帖子的所有“ post_content”内容。
UPDATE wpp_posts join wp_term_relationships on (wp_posts.ID = wp_term_relationships.object_id)
where wp_term_relationships.term_taxonomy_id = 410
SET post_content =
''
正在产生错误。
SET post_content =
'''在第二行
答案 0 :(得分:0)
<StackPanel.Resources>
<Style TargetType="ToolTip">
<Setter Property="MaxWidth" Value="300" />
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
</Style>
</StackPanel.Resources>
必须在where子句之前。
SET post_content=''