1. Display all the rows and columns in the CLIENT table.
Sort by client name in reverse alphabetical order.
Answers were Sorted based on User's Feedback
Answer / yogesh sharma
select * from emp order by reverse(ename) ;
Is This Answer Correct ? | 6 Yes | 3 No |
How to Identify the previously inserted/updated records in already populated table.
create or replace procedure show_tab_rec ( P_tab VARCHAR2 ) IS cmd varchar2(50); begin cmd := 'select * from '|| P_tab; for int in ( execute immediate cmd ) loop dbms_output.put_line ( int.ename||' '||int.deptno); end loop; end; when i m compling this procedure i m getting this error PLS-00103: Encountered the symbol "IMMEDIATE" when expecting one of the following: . ( ) , * @ % & | = - + < / > at in is mod remainder not range rem => .. <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member SUBMULTISET_ PLZ solve this error give this question answer asap Thanks advance.......
find out first highest salary?
10 Answers Verinon Technology Solutions,
Explain what does a control file contain?
What is instant client oracle?
difference between procedures and function?
How do I connect to oracle?
What do you mean by a deadlock?
Can we insert data in view oracle?
20. Using a set operator, display the client number of all clients who have never placed an order.
What is bind variable in oracle 11g?
How to execute a stored program unit?