Table1- have two column
filename data
AFGDFD-20112011 hi how r u
bsdasd-23042011 name shoud be in bold
Now i want output like
filename data
AFGDFD hi how r u
bsdasd name shoud be in bold
Kindly answer this
Answer Posted / suman rana
SELECT REGEXP_SUBSTR (filename, '[[:alpha:]]+') filename, data
FROM (SELECT 'AFGDFD-20112011' filename, 'hi how r u' data
FROM DUAL
UNION
SELECT 'bsdasd-23042011', 'name shoud be in bold' FROM DUAL)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the data type of dual table?
Who developed oracle & when?
What is hash cluster in oracle?
What happens to the indexes if a table is recovered?
What are dml statements in oracle?
What is columnar storage what is the advantage?
How to display row numbers with the records?
What are the logical operations?
What is oracle sid?
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
how to do daily transactions with out sql* loader control file regesterd in apps?
How to count groups returned with the group by clause in oracle?
Can select statements be used on views in oracle?
defination of bitmap index
Differentiate between translate and replace?