GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  PL/SQL

 Print  |  
Question:  I have to replace a particular value say "_" with a space in particular column of a table, kindly provide me the query how to achieve this.



December 12, 2006 06:38:19 #2
    Member Since: Visitor    Total Comments: N/A 

RE: I have to replace a particular value say "_" with ...
 
Actually your question is not clear. Do u want to change column name or values in the column?to change a values it is quite simple.select replace('replace_underscores_with_spaces','_',' ') from dual;
     

 

Back To Question