Two Methods of retrieving SQL?

Answers were Sorted based on User's Feedback



Two Methods of retrieving SQL?..

Answer / rabiya basri

Answer -> SELECT statement, cursors.

Is This Answer Correct ?    207 Yes 11 No

Two Methods of retrieving SQL?..

Answer / srilekha

using select stmt and cursor u can retrive the records

Is This Answer Correct ?    127 Yes 6 No

Two Methods of retrieving SQL?..

Answer / prasad

two methods of retrieving SQL are
1) is select stmt
2) is cursor
we can use these commands to retrive the related records

Is This Answer Correct ?    62 Yes 8 No

Two Methods of retrieving SQL?..

Answer / ashvin ranpariya

two methods of retrieving SQL is
1) Select Statment
Example: select * from XYZTBLES;
2)Cursor
Example:

declare
type r_cursor is REF CURSOR;
c_emp r_cursor;
en emp.ename%type;
begin
open c_emp for select ename from emp;
loop
fetch c_emp into en;
exit when c_emp%notfound;
dbms_output.put_line(en);
end loop;
close c_emp;
end;

Is This Answer Correct ?    49 Yes 5 No

Two Methods of retrieving SQL?..

Answer / neeraj pawar

select
&
Cursor

Is This Answer Correct ?    18 Yes 2 No

Two Methods of retrieving SQL?..

Answer / sudipta ku dhal

1)select
2)cursor

Is This Answer Correct ?    17 Yes 3 No

Two Methods of retrieving SQL?..

Answer / guest

1.PROJECTION
2.SELECTTION

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

Can I call a procedure inside a function?

0 Answers  


Explain the significance of the & and && operators in pl sql.

0 Answers  


i have one table with accounts and amounts as colums.accounts with columns c and d. and amounts with values 1000,2000,3000 for c and 4000,5000,8000 for d.i need to find the sum of these accounts c and d individually and find the differences between their sum using one select statement.

11 Answers   Ebix, Hewitt,


What is an emotional trigger?

0 Answers  


Which table is left in left join?

0 Answers  






What are stored procedures in mysql?

0 Answers  


What is the difference between count 1 and count (*) in a sql query?

0 Answers  


Is sql injection illegal?

0 Answers  


What is sql not null constraint?

0 Answers  


Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?

0 Answers   IBM,


When is the explicit cursor used ?

0 Answers  


Is subquery faster than join?

0 Answers  


Categories