次の変数があります。
DECLARE @test nvarchar(100)
SET @test = 'Prodcut A (Avegrage: 1.000)'
列に「(Avegrage) で始まる」が含まれている場合は削除したいと思いますが、SUBSTRING と CHARINDEX を使用する必要があることは確かですが、方法がわかりません。誰か助けてください。
SELECT @test as product, left(@test, charindex('(Avegrage', @test) - 2) AS LeftString
product Product Name
Prodcut A (Avegrage: 1.000) Prodcut A