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 t sql in sql server?
Who is the owner of mysql database?
What is an intersect?
Why do we need view in sql?
what is row? : Sql dba
How to return multiple rows from the stored procedure?
Which language is used in sql?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
Can there be 2 primary keys in a table?
Is trigger a stored procedure?
what are properties of a transaction? : Sql dba
What is the difference between null value, zero, and blank space?
What is pl sql package?
does sql support programming? : Sql dba
Does sql backup shrink transaction log?