wa procedure to return the month and the no'f developers
joined in each month.
Answers were Sorted based on User's Feedback
Answer / kiran
select count(*) "NoFDevelopers",to_char(hiredate,'Mon') from emp group by to_char(hiredate,'Mon');
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arrry.net
It's simple
No need to use Cursor for that
select Month(Joindate)as MONTH,count(*) as empCount from dbo.tblEmployee
Group by Month(Joindate)
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / vishal narkhede
select to_char(hiredate, 'MON-RRRR'),count(1) from emp
group by to_char(hiredate, 'MON-RRRR')
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / 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 |
write a query to remove null following table are id name 101 dinesh null jyothi null bharathi 102 suresh null shilpha 103 prakesh null suma i want the output format like id name 101 dinesh 102 suresh 103 prakesh
what is a database? : Sql dba
What are the attributes of SQL*PLUS ?
2 Answers Dream Careers, Oracle,
What is a natural join sql?
What is query syntax?
Explain what is a database?
What is the difference between microsoft sql and mysql?
what is difference between pass by value and eference by value in oracle plsql
How many types of normalization are there?
How many row comparison operators are used while working with a subquery?
How do I add a primary key to a table?
What are the two parts of design view?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)