SQL Plus Question:
Download Questions PDF

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

Answer:

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

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

Download SQL Plus Interview Questions And Answers PDF

Previous QuestionNext Question
Explain What are the data types allowed in a table?Explain Can a view be updated/inserted/deleted?