wa procedure to return the month and the no'f developers
joined in each month.
Answer Posted / narenkumar reddy
create or replace procedure
procdure_name
cursor c1 is select count(*),month from table
is
begin
for i in c1
loop
dbms_output.put_line(i.count(*)||i.month)
end loop;
end;
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What are primary key and foreign key and how they work?
How many scalar data types are supported in pl/sql?
What are the types of variables use in pl sql?
What is a constraint?
How many sql statements are used? Define them.
What is trigger explain it?
What is an index in sql with example?
What is procedure in pl sql?
What is insert command in sql?
what is a foreign key ? : Sql dba
How to take user input in pl sql?
What does dml mean?
what is the difference between blob and text? : Sql dba
How do I count rows in sql?
Can we join more than 2 tables in sql?