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 |
sales persons should always receive commission of 100 at least. employees who r not sales persons should never receive commission.(Triggers)
How can I speed up sql query?
What is difference between joins and union?
What is the syntax to add a record to a table?
The in operator may be used if you know the exact value you want to return for at least one of the columns.
How delete all records from table in sql?
Can we debug stored procedure?
What is hibernate and its relation to sql?
How do I remove duplicates in two columns?
Can unique keys be null?
Are pl sql variables case sensitive?
describe transaction-safe table types in mysql : sql dba
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)