Hi,
I need to remove the number and semicolon and # and just get the text and insert as two rows .
CREATE TABLE #Split
(
ID INT,
Texts NVARCHAR(100)
)
INSERT INTO #Split (ID,TExts)
SELECT 1,'136;#BRZ Brazil' UNION
SELE
↧