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 an oracle function?
How to check the server version in oracle?
How to delete all rows a table in oracle?
What is a dynamic performance view in oracle?
What is oracle join syntax?
What are the oracle differences between nvl and coalesce
What is instant client oracle?
What are the parameters that we can pass through a stored procedure?
State some uses of redo log files?
How to load data from external tables to regular tables?
How to generate query output in html format?
What are the components of logical database structure in oracle database?
What is literal?
Explain the use of file option in exp command.
Describe an oracle table?