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
Why stored procedure is better than query?
How to write pl sql program in mysql command prompt?
How to add a column ‘salary’ to a table employee_details?
Can procedure in package be overloaded?
Is nosql relational?
What are the different sql languages?
Do we need to rebuild index after truncate?
What is a table in a database?
What is normalization in sql?
What do you mean by rowid?
What is gpt format?
What is varray in pl sql?
What's the procedure?
When is the explicit cursor used ?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)