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.
Answer Posted / prativa mishra
select
trans_id,debit_credit_indicator,max(trans_amount),min(trans_am
ount) from customer1
group by trans_id,debit_credit_indicator
order by trans_id
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the events on which a database trigger can be based?
What is microsoft t sql?
What are triggers in sql?
What is clustered and nonclustered index in sql?
What is number function in sql?
How to create your own reports in sql developer?
How do you modify a trigger?
What is native sql query?
What is null in pl/sql?
Is join and inner join the same?
Define union, minus, union all, intersect ?
What is basic structure of pl sql?
What is pl sql block structure?
What are aggregate functions in sql?
Is it possible to create startup or shutdown trigger for on-schema?