• create table #tblRegistration

    (

    Phone1 varchar (10)

    )

    insert into #tblregistration

    select '9334457582' union

    select '1234567890'

    select

    replace(Phone1,SUBSTRING(phone1,3,6),'******') ---This one

    from #tblregistration

    drop table #tblRegistration

    This should stop the error message. Just include the marked line in your select list. Let me know how you get on please.


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537