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.
SQL Server の説明フィールドのテキストの一部を削除して、このスクリプトを更新しようとしました。
UPDATE products SET description = LEFT(description, CHARINDEX('<b>Please select xxxx</b>', description) - 1) WHERE productid = 'abc'
正常に動作しますが、すべての製品に対して動的に更新できません。
UPDATE products SET description = Replace(description, '<b>Please select xxxx</b>', '') WHERE description LIKE '%<b>Please select xxxx</b>%';