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 sp_pkeys? : Transact sql
What is rule base and cost base optimizer?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What is basic structure of pl sql?
How to find the count of letter "L" in HELLO
What is pl/sql tables?
Can we use loop in sql?
Its possible to add more than one primary key for the table
How does postgresql compare to oracle/db2/ms sql server/informix?
What is before trigger?
What is the default value of CHAR type?
Difference between SUBSTR and INSTR?
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)