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 NN,NN,NN,NE,NN,NN,NE,CE,
Its some urgent requirement ,thanks in advance

Answer Posted / vinay singh

select * from PA_TASKS pp
where pp.TASK_NUMBER in
(select QQ.TASK_NUMBER from PA_TASKS QQ
where length(trim(translate
(QQ.TASK_NUMBER,'0123456789',' '))) > 0
)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the most important ddl statements in sql?

653


How do you write an index?

620


What is the use of prepared statement?

647


What does joining a thread mean?

640


What is $$ in sql?

642






What is partition in sql query?

609


What is pl sql record in oracle?

651


What is compute?

657


What is sql key?

610


What is sql rowcount?

647


What is delimiter sql?

630


Can we use join in subquery?

654


Should I use mbr or gpt?

631


What are the dml statements?

775


Which is better trigger or stored procedure?

590