0
Based on our stats gathered across the U.S.        95%      of Flight Department Managers were males while        95%      were females.

私はこの文章を数千のワードプレスの投稿に載せていますが、ここでは明らかにフライト部門のマネージャーが動的な要素です。

私がする必要があるのは、最初の95%を%5に置き換えることですが、この文の男性と女性の両方が95%である投稿にのみ適用されます。

したがって、上記の文は次のようになります。

Based on our stats gathered across the U.S.        5%      of Flight Department Managers were males while        95%      were females.
4

1 に答える 1

0

次のように書くことができます:

UPDATE table_name
   SET column_name = REPLACE(column_name, ' U.S.        95% ', ' U.S.        5% ')
 WHERE column_name REGEXP ' 95% .* 95% '
;
于 2013-03-22T01:25:29.910 に答える