Viewing 15 posts - 2,521 through 2,535 (of 13,877 total)
Try this:
SELECT t1.*
FROM #Test1 t1
CROSS APPLY STRING_SPLIT(t1.SName, '/') ss
JOIN #Test2 t2
ON...
Infallible, unless the original text contains some combinations of angled brackets, in which case alternative 'dummy characters' may be employed, for example:
SELECT t.SomeString
...
There's now a well-known solution to this problem which requires no non-standard functions:
DROP TABLE IF EXISTS #Test;
CREATE TABLE #Test
(
SomeString VARCHAR(500)
);
INSERT #Test
(
...
I think its on my side. My SSMS crashes and restarts. As of now we dont have src control where im at. We're in the process of setting it...
Viewing 15 posts - 2,521 through 2,535 (of 13,877 total)