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 / oddabout.com
SELECT replace(replace(replace('A.B....C.......D.........E........F','.',' @'),'@ ',''),' @','.') FROM dual
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How can I delete duplicate rows?
Can you call pl/sql package functions from within a fast formula?
What is union, minus and interact commands?
Which is faster count (*) or count 1?
Can we perform dml on view?
What is the current version of sql?
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
What are different types of indexes?
What is parallel hint?
How many clustered indexes can you have?
Is pl sql a scripting language?
What is pivot query?
What is blind sql injection?
Show code of a cursor for loop.
What are the two types of exceptions in pl/sql?