HI!
I have one table called TRAN_DET with the following columns :
TranDate Date Not Null,
TranDesc varchar(50) Not Null,
TranVal decimal(10,2) Not Null,
TranSts char(1) Not Null
The TranSts column stotes either 'C' or 'D'.
I am unable to find the summary of the transaction for each date in the following manner by writting a SQL statement:
Date, Sum of TranVal for TranSts='C', Sum of TranVal for TranSts='C'
Can any body help me in this regard?
Thankx in advance.
TapKs
I have one table called TRAN_DET with the following columns :
TranDate Date Not Null,
TranDesc varchar(50) Not Null,
TranVal decimal(10,2) Not Null,
TranSts char(1) Not Null
The TranSts column stotes either 'C' or 'D'.
I am unable to find the summary of the transaction for each date in the following manner by writting a SQL statement:
Date, Sum of TranVal for TranSts='C', Sum of TranVal for TranSts='C'
Can any body help me in this regard?
Thankx in advance.
TapKs