i have a word
***********hello********world******.
I require a o/p
**********hello world**********,
Need to delete the middle stars.
Answer Posted / chandan kumar
select (substr('***********hello********world******',1,instr
('***********hello********world******','o',1) )
||' '||substr('***********hello********world******',instr
('***********hello********world******','w',1) )
)
from dual
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What are all different types of collation sensitivity?
Name the different types of indexes in sql and define them.
How do I run a program in pl sql?
Can I call a procedure inside a function?
What is union and union all keyword in sql?
How do you update a sql procedure?
explain the options of myisamchk to improve the performance of a table. : Sql dba
What does the base_object_type column shows in the user.triggers data dictionary view?
What is difference between function and trigger?
Does postgresql run on the cloud?
how to use in conditions? : Sql dba
i have 2 table table one 4 columns respective values a1 7,a2 6,a3 8 ,a4 12 & table two 4 colums respective values a1 7,a2 6,a3 8,a4 15.if table one & table two 3 colums same then 4th column values 1)Qes diff >5 then print 5 * diff value 2)Que diff <5 print 5
What is a recursive join sql?
What is a null value?
How to call a javascript function from pl sql?