how to select alphabets in a one column , for this the
table name is PA_TASKS and column name is TASK_NUMBER, In
TASK_NUMBER the data like this
1.1.3NN,1.1.4NN,1.5.1NN,1.3.2NE,1.5NN,1NN,1.2NE,1CE , For
this i need to disply output as only NN,but not other
alphabets, if NN is thre means i should display , otherwise
leave that blank or empty Its some urgent
requirement ,thanks in advance
Answer Posted / ajit
SELECT * FROM SAMP;
A
--------
1.1.3NN
1.1.4NN
1.5.1NN
1.3.2NE
SELECT *
FROM SAMP
WHERE A LIKE '%NN';
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain a segment?
defination of bitmap index
What are the uses of Database Trigger ?
What happens if the imported table already exists?
Assuming that you are an End User How to find that in the payment Batch some of the Invoice was Missing To pay How to find That??
Is primary key indexed by default in oracle?
What is sharded cluster?
Can any one explain me when i execute below query.. select months_between('07-JUL-12','10-FEB-12') from dual; Out put:- 4.90322581 How oracle calculate?
What is a tns file?
How to add another datafile to a tablespace?
What is a dead lock in oracle?
How to get a create statement for an existing table?
What is query image?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
Can we call procedure inside function in oracle?