我有以下变量:
DECLARE @test nvarchar(100)
SET @test = 'Prodcut A (Avegrage: 1.000)'
如果该列包含以“(平均)开头,我想删除我确定我必须使用 SUBSTRING 和 CHARINDEX 但不知道如何使用。有人可以帮我吗?
SELECT @test as product, left(@test, charindex('(Avegrage', @test) - 2) AS LeftString
product Product Name
Prodcut A (Avegrage: 1.000) Prodcut A