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 Tune Query
Explain the use of grant option in imp command.
what is port in oracle? how is it related to database application.
How can we create the complete backup of data in the oracle.
What is the max number of columns in an oracle table?
What query tells you how much space a tablespace named test is taking up, and how much space is remaining?
How to retrieve values from data fields in record variables?
Explain drop constraint oracle?
How to grant create session privilege to a user in oracle?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
What is dual table oracle?
How to commit the current transaction in oracle?
How to store only time; not date and time?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
Explain what are the type of synonyms?