1. Display all the rows and columns in the CLIENT table.
Sort by client name in reverse alphabetical order.

Answer Posted / yogesh sharma

select * from emp order by reverse(ename) ;

Is This Answer Correct ?    6 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between Delete, Truncate and Drop in Oracle?

698


How to insert a new row into a table in oracle?

686


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1663


Why does for update in oracle 8 cause an ora-01002 error?

646


What is oracle database 10g express edition?

676






What are privileges and grants?

658


How to write a query with a right outer join in oracle?

703


What does sharding mean?

632


query optmization techniques and quwry analyser+projects+ppts

2058


How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?

1904


Is it possible to insert comments into sql statements return in the data model editor ?

2184


when we are importing items in inventory, showing errors, Oracle support suggested us for running scripts & also suggested if we run scripts, iprocurement applicaation if is there it will show shared and if we go in future for iprocurement, it wont work. So kinldy suggest any functional solution.

1558


How do I escape a reserved word in oracle?

727


What do you mean by redo log file mirroring?

635


Why packages are used in oracle?

636