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
Answer / ajit
SELECT SUM(PRODQTY) FROM EMP WHERE TO_CHAR(PRODDATE,'MON-YYYY')='APR-2014';
Is This Answer Correct ? | 1 Yes | 0 No |
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 |
What is user in sql?
Can we alter stored procedure?
what is csv? : Sql dba
What is cross join example?
how can we submit a form without a submit button? : Sql dba
Is sql better than access?
How to perform a loop through all tables in pl/sql?
what are the types of subquery? : Sql dba
What is a full join sql?
Explain ttitle and btitle.
Is trigger a stored procedure?
How many subqueries can be nested in a statement?