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
Are dml statements autocommit?
Can sql developer connect to db2?
What is parallel hint?
Define the select into statement.
Does sql use python?
Which constraints we can use while creating database in sql?
What is procedure explain with example?
What is the plv (pl/vision) package offers?
How do you delete duplicates in sql query using rowid?
what is a control file ? : Sql dba
What is a heap in sql?
What is the difference between drop and truncate commands?
what is a trigger in mysql? : Sql dba
What is dense_rank in sql?
Does inner join return duplicate rows?