@FullString
mandatory
varchar(8000)
OUTPUT. Returns everything after the first occurrence of @Separator in @FullString. Returns null if the separator is not found.
Note that the parameter is used both for input and output.
@FirstString
mandatory
varchar(8000)
OUTPUT. Returns everything before the first occurrence of @Separator in @FullString. Returns @FullString if the separator is not found.
@Separator
mandatory
char(1)
Separator character.