try this...
update table
set field = case when left(ltrim(field), 1) = '9' then replicate('0', 1) + field
else cus_name end
...if your field is an integer, you'll need to wrap field with convert(varchar, field). If your intention is to only select data, obviously use select vs update.
Hope this helps.