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 is the difference between rename and alias?
What is the difference between a database and a relational database?
Write a sql query to find the names of employees that begin with ‘a’?
What are types of joins?
Is sql a programming?
What are sql constraints?
Why do we go for stored procedures?
what is a control file ? : Sql dba
What are different categories of sql commands?
explain access control lists. : Sql dba
Mention what does plv msg allows you to do?
What is sql architecture?
Can you select everything, but 1 or 2 fields, without writer's cramp?
what is dbms? : Sql dba
What is scope and visibility in PL/SQL?