table name: prod there are three fields in the table that are
1.proddate
2.prodQty
3.model
Day wise prodQty is stored in the table prod
write a query to display total prodqty in the year 2004 april.

Answers were Sorted based on User's Feedback



table name: prod there are three fields in the table that are 1.proddate 2.prodQty 3.model Day..

Answer / ajit

SELECT SUM(PRODQTY) FROM EMP WHERE TO_CHAR(PRODDATE,'MON-YYYY')='APR-2014';

Is This Answer Correct ?    1 Yes 0 No

table name: prod there are three fields in the table that are 1.proddate 2.prodQty 3.model Day..

Answer / sunnil

select sum(prodqty) from emp where to_char('proddate','yyyy')=2014 and to_char('proddate','mm')=04;

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

How does join work in sql?

0 Answers  


What are advantages of Stored Procedures?

3 Answers   Satyam,


Can a foreign key be a duplicate?

0 Answers  


What is the difference between cluster and non-cluster index?

0 Answers  


What are the types of join in sql?

0 Answers  






Why do we use subquery?

0 Answers  


how to include character strings in sql statements? : Sql dba

0 Answers  


What are the string functions in sql?

0 Answers  


Can a foreign key have a different name?

0 Answers  


What are different sql data types?

0 Answers  


How do I save a stored procedure?

0 Answers  


how to include comments in sql statements? : Sql dba

0 Answers  


Categories