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
What is the best sql course?
What is your daily office routine?
Is inner join faster than left join?
What is the current version of postgresql?
Is primary key always clustered index?
what is schema? : Sql dba
what are aggregate and scalar functions? : Sql dba
what is sql server agent? : Sql dba
what is dbms? : Sql dba
how many tables will create when we create table, what are they? : Sql dba
what are the advantages of sql ? : Sql dba
how to escape special characters in sql statements? : Sql dba
Is primary key clustered index?
Do we need to rebuild index after truncate?
If a cursor is open, how can we find in a pl/sql block?