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
What is the max number of columns in an oracle table?
what is the difference between substr and instr function in oracle?
How to calculate date and time differences in oracle?
What is backup in Oracle?
How to get execution statistics reports on query statements?
Does oracle database need java?
How to bring a tablespace online?
What are the logical operations?
21. Using a set operator, display the client number of all clients who have ever placed an order and whose whose name does not contain the string Sm.
hey friends, What are the steps I can do to transfer the database from Microsoft Access 2003 to oracle10g (or SQL) Best regards
How many categories of data types in oracle?
Why use resource manager in Oracle?
How can I create database in oracle?
How would you best determine why your MVIEW couldnt FAST REFRESH?
What is an external table?