What is the difference between distinct and unique in sql?
What is the difference between explicit and implicit cursors in oracle?
how to drop an existing index in mysql? : Sql dba
How do I run a script in sql developer?
how to load data files into tables with 'mysqlimport'? : Sql dba
How can we debug in PL/SQL?
how to create a new view in mysql? : Sql dba
What are different types of queries in sql?
why sql is used as interpreter frequently rather than a compile?
What are the features of pl sql?
what is pragma ?
what are the system privileges that are required by a schema owner (user) to create a trigger on a table?
trans_id trans_date trans_amt debit_credit_indicator 001 01-JAN-13 1099 cr 001 12-JAN-13 500 db 002 24-FEB-13 400 db 002 23-MAR-13 345 cr 001 18-APR-13 800 cr 002 15-MAR-13 600 db 001 12-FEB-13 200 cr i want like this output trans_id trans_date trans_amt debit_credit_indicator 001 JAN 1599 cr no.of trans 2 i want trans_id and trans_date like 'JAN' or 'FEB' etc, trans_amt i want all credit amount - debit amount per each trans_id. and debit_credit_indicator and no.of transactions in a month.