Display the total debit counts, total credit counts, sum of
total debits, sum of total credits from an employee's
transaction table (a single table) containing the following
columns.
Transaction_number
Transaction_amount
Transaction_date
Transaction_type --> tells if the amount is a credit or a
debit.
As the query alone is important, the table is left with
specifying just the field's name. Pls help me with this
query.
Answer Posted / ajit
Also u can use count function to calculate total debit & credit cout.
and u can use this sql stmt
select tran_type, Count(tran_type) total,
(select sum(tran_amt)
from tran
where tran_type = 'D') sumofde,
(select sum(tran_amt)
from tran
where tran_type = 'C') sumofce
from tran
group by tran_type;
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
How to display the records between two range in Oracle SQL Plus?
Is trigger a stored procedure?
What is transaction control language (tcl)?
What is pl/sql table? Why it is used?
Are subqueries faster than joins?
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
what is an alias command? : Sql dba
what is sp_pkeys? : Transact sql
What are the packages in pl sql?
What is a left join?
Is id a reserved word in sql?
Why do we use procedures in sql?
What is query syntax?
What is out parameter used for eventhough return statement can also be used in pl/sql?
how to get help information from the server? : Sql dba