SELECT SUBSTRING(address, CHARINDEX(' ',address)+1,field_len)
FROM table
Разъяснения
Синтаксис: SUBSTRING (имя поля, начальная_позиция, конечная_позиция)
В вашем случае
SUBSTRING(
address -- your field name
, CHARINDEX(' ',address)+1 -- find the space char
, field_len -- get all the rest of the string
)