SQL Plus Question:

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

SQL Plus Interview Question
SQL Plus Interview Question

Answer:

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

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


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