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 / samiksha
In SQl Sever the query would be:
select substring (reverse(task_number),1, 2) from task
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is normalisation in sql?
Do stored procedures prevent sql injection?
How do I trace sql profiler?
How do rank () and dense_rank () differ?
Can we alter stored procedure?
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
What is the difference between python and sql?
Can we use ddl statements in stored procedure?
Can cursors be part of a trigger body?
What is the difference between stored procedure and view?
What is the mutating table and constraining table?
What is union and union all keyword in sql?
Can we use rowid as primary key?
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
Explain table and field in sql?