Answers

Question and Answer:

  Home  SQL Plus

⟩ Explain How do we replace a comma (,) with a blank in a select statement?

select empno||' '||ename from emp;

select replace (column name,',','') from table name.

 131 views

More Questions for you: