try this code...
suppose you have the table 'tblNames' with a column 'name'
select left(name,charindex('-', name)-1)
from tblNames union all
select left(name,charindex('/', name)-1)
from tblNames
havent tried it... i'll try this code at home...
but...