Answered Questions

  • Replace Only Third Character with *

    How to replace only third character of employees name with * from employee table?

    Ankit

    • Mar 7th, 2018

    SELECT REPLACE(NAME,SUBSTR(NAME,3,1),*) FROM Friend_Birthday

    PAVAN

    • Jan 19th, 2018

    SELECT REGEXP_REPLACE(FIRSTNAME, SUBSTR(FIRSTNAME,3,1), *,1,1) FROM EMPLOYEE;