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
How to pipe multiline string to isql?
How can a function retun more than one value in oracle with proper example?
What is pl sql package?
What is not null in sql?
Explain the types of joins in sql?
What is cross join example?
what is sql? : Sql dba
What is the use of sqlerrd 3?
What is the syntax and use of the coalesce function?
What is group function in sql?
What is data type in database?
how to start mysql server? : Sql dba
Why select is used in sql?
What is the difference between mdf and ndf files?
Explain correlated query work?