I have a table emp. There is only one column in the table.
In that , there are only three rows in that column.
The value in the first row is 'A' and the value in the
second row is 'B' and the third row is 'C'. Now, my question
is ,
How will you write a select query to display the output as
B
C
A
Note: order by cannot be used coz it gives us output as CBA.
But the output should be BCA.
Answers were Sorted based on User's Feedback
Answer / garv
SELECT DECODE (EEE,'A','B','B','C','A') EEE
FROM EMP
--EEE IS COLUMN NAME OF TABLE EMP
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / eswar reddy
declare one cursor ,PL/SQL TABLE
IN DBMS MENTIONED PRIOR,LAST,FIRST
| Is This Answer Correct ? | 0 Yes | 0 No |
declare
type samp_type is table of VARCHAR2(20)
index by binary_integer;
table_type samp_type;
cursor c1 is
select Colum-Name from Table_name;
begin
open c1;
fetch c1 bulk collect into table_type;
close c1;
for i in reverse 1..4 loop
dbms_output.put_line(table_type(i));
end loop;
end;
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe an oracle table?
difference between bind variable and variable
How to omit columns with default values in insert statement in oracle?
master table and child table performances and comparisons in Oracle ?
What are a cluster and non-cluster index?
What is transport network substrate (tns) in oracle?
what is RAID technology?which is better RAID 0+1 OR RAID 5?
How to convert times to characters in oracle?
Explain oracle’s server parameter file.
What is cluster Key ?
What happens to the current transaction if the session is ended?
HI, Please let me know the syllabus for Oracle OCA and OCP Certification