i have a customer 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_amt debit_credit_indicator
i want get highest credit amount and lowest credit amount
and highest debit amount and lowest debit amount for each
trans_id.
pls give me answer. i want urgent
Answer Posted / srinu.g
SELECT
trans_id,MAX(TRANS_AMOUNT),MIN(TRANS_AMOUNT),DEBIT_CREDIT_INDICATOR
FROM CUSTOMER WHERE DEBIT_CREDIT_INDICATOR='cr'
UNION ALL
SELECT
trans_id,MAX(TRANS_AMOUNT),MIN(TRANS_AMOUNT),DEBIT_CREDIT_INDICATOR
FROM CUSTOMER WHERE DEBIT_CREDIT_INDICATOR='db'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is natural join in sql?
Is id a reserved word in sql?
What is rowid in sql?
Write an sql query to select all records from the table?
how many columns can be used for creating index? : Sql dba
What is ttitle and btitle?
Explain the uses of a database trigger?
What is union?
Is sql a dbms?
Can we insert in view in sql?
What are the parameter modes supported by pl/sql?
What are the three forms of normalization?
What is mdf ldf and ndf?
Why is sql*loader direct path so fast?
What is trigger in pl sql with examples?