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 / ajit
select substr(file, 1, instr(file, '_',1,1) - 1) file, data from <table name>;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
List out the types of joins.
What are the parameters that we can pass through a stored procedure?
Can we commit inside a function in oracle?
Give the different types of rollback segments.
Give the constructs of a package, function or a procedure.
What is bind variable in oracle 11g?
What is the difference between a primary key & a unique key?
What is a subquery in oracle?
What is a nested table?
What is concurrency in oracle?
How to compare dates in oracle sql?
Can we call procedure inside function in oracle?
How to write numeric literals in oracle?
What is the difference between pre-select and pre-query?
Why do we use coalesce function in oracle?