Hi friends,
I know this is simple but due to time issue I'm posting here.
declare @a varchar(50)='$3500 x FBDs /3' Select @a
now i want the result into three columns
value type multiplier
$3500 fbd 3
I meant before 'X' as one column , after '/' as one column . in between as one column.
Note.The length is not fixed. I cannot use substring.
Thanks for the help.