Skip to content

Commit 4b41fea

Browse files
authored
Update sql-server-function.md
1 parent 29f9118 commit 4b41fea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs2/pages/troubleshooting/sql-server-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ FROM dbo.SQLNET_EvalTVF_1(@sqlnet.ValueString('input', @s))
3737

3838
For simple code, SQL syntax may work like a charm but when the code's complexity increases, less SQL is best suited for the job. It is designed to write queries, not to create long spaghetti code. We all have seen some functions that could have been written so much easier using another language like C#.
3939

40-
One of the most common function is probably the fn_split function. It's not that hard to understand but thousands of variance exist and most of them are limited to only one delimiter. Using Eval SQL.NET, the fn_split function takes regular expression to split text which makes it very powerful.
40+
One of the most common function is probably the fn_split function. It's not that hard to understand but thousands of variances exist and most of them are limited to only one delimiter. Using Eval SQL.NET, the fn_split function takes regular expression to split text which makes it very powerful.
4141

4242

4343
## SQL Function - Error handling

0 commit comments

Comments
 (0)