0

SQL Server の説明フィールドのテキストの一部を削除して、このスクリプトを更新しようとしました。

UPDATE products
SET description = LEFT(description, CHARINDEX('<b>Please select xxxx</b>', description) - 1)
WHERE productid = 'abc'

正常に動作しますが、すべての製品に対して動的に更新できません。

4

2 に答える 2

2
UPDATE products
SET    description = Replace(description, '<b>Please select xxxx</b>', '')
WHERE  description LIKE '%<b>Please select xxxx</b>%';
于 2013-07-30T08:49:52.960 に答える