-
What is difference between a PROCEDURE & FUNCTION ?
A FUNCTION is always returns a value using the return statement. A PROCEDURE may return one or more values through parameters or may not return at all.
-
-
-
-
How can I get recent 10 records out of 100 records
HI all
table contain some 1000 records, today I inserted 100 records into table, so I want first 10 records data from 100 records
how can I retrieve -
-
-
-
What will happen after commit statement ?
Cursor C1 is Select empno, ename from emp; Begin open C1; ...
-
-
-
-
Drop Vs Truncate
Which is faster, Drop or Truncate? Explain
-
-
-
Query to retrieve one entire column data
Write a query to retrieve one entire column data of multiple rows into one single column of single row?
What is difference between % ROWTYPE and TYPE RECORD ?
% ROWTYPE is to be used whenever query returns a entire row of a table or view. TYPE rec RECORD is to be used whenever query returns columns of differenttable or views and variables. E.g. TYPE r_emp is RECORD (eno emp.empno% type,ename emp ename %type); e_rec emp% ROWTYPE cursor...
Ans