我有一个插入脚本,我试图在其中提取值
这是脚本
@scriptprod=INSERT intoProducts_Details
( VAL_ID ,
ProductID ,
SONumber ,
ProductTypeName ,
QuantitySold ,
Hours ,
Comments ,
Synch_Status ,
ProdID
)
VALUES ( 'V420131010213137TEST' ,
'186' ,
'5000000010' ,
'Bundled Anesthesia' ,
'9' ,
'12.00' ,
'test anas' ,
'' ,
'PD20131011121909999000'
)
我试着用喜欢
substring(
@scriptprod,
charindex('PD20',@scriptprod,0),
LEN(@scriptprod)-CHARINDEX('PD20',@scriptprod,0)-1)
我没有得到请帮忙