Suppose There is a string
A.B....C.......D.........E........F In this string dots (.)
are not having fixed count in between of string. I want the
output to have string with one dot between. I.e.
A.B.C.D.E.F
Answer Posted / dilip kumar
SELECT REGEXP_REPLACE (
Replace ('A.B....C.......D.........E........F', '.', ' '),
'( ){1,}',
'.')
FROM DUAL;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How would you reference column values before and after you have inserted and deleted triggers?
What is a column in a table?
What is group function in sql?
What is where clause in sql?
tell me about various levels of constraint. : Sql dba
What is pl sql in oracle?
Can function return multiple values in sql?
How many types of normalization are there?
What is coalesce sql?
How can we debug in PL/SQL?
What are all different types of collation sensitivity?
Why do we need unique key in a table?
What are different types of statements supported by sql?
What is sqlerrm?
What is dml with example?