-
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; ...
-
-
-
-
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...
What are the components of a PL/SQL block ?
A set of related declarations and procedural statements is called block.
How to update a rows with opposite gender in Sql?
In Emp table there is a column which consists of gender (Male or Female) ? How should one
Can update the Values of Male to Female and Female to Male with a single query ?
Ans