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
How to run pl/sql statements in sql*plus?
How can I get the number of records affected by a stored procedure?
What is multiple columns?
Is coalesce faster than isnull?
what is 'mysqldump'? : Sql dba
What is sql and explain its components?
Can we create view in stored procedure?
How can I change database name in sql?
explain advantages of innodb over myisam. : Sql dba
How to display the current date in sql?
What is left join in postgresql?
what is the difference between delete and truncate commands? : Sql dba
What are the types of optimization?
What is sql entity?
What is the difference between row level and statement level trigger?