Hello
I'm trying to use T-SQL for this query:
I want to list some columns from a table. The problem is that I want to cut some part of the output.
For example:
In the column 'name' I have following entries:
abcd
abcd:aaaa
abcde:aaaa
I would like to receive only the part left to the ':', in this case:
abcd
abcd
abcde
Is this possible?
Regards
Leandro
I'm trying to use T-SQL for this query:
I want to list some columns from a table. The problem is that I want to cut some part of the output.
For example:
In the column 'name' I have following entries:
abcd
abcd:aaaa
abcde:aaaa
I would like to receive only the part left to the ':', in this case:
abcd
abcd
abcde
Is this possible?
Regards
Leandro