Pokud chcete vše za posledním _
a poté použijte:
select right(db_name(), charindex('_', reverse(db_name()) + '_') - 1)
Pokud chcete všechno předtím, použijte left()
:
select left(db_name(), len(db_name()) - charindex('_', reverse(db_name()) + '_'))