3
Answers

sql group by clause

varsha dodiya

varsha dodiya

10y
833
1
totalvat rsdiscount %
50052
100022
1200105

i want my result to be calculated as 

(500+5) * 2/100 =a
(1000+2)*2/100=b
(1200+10)*5/100=c
" " " " " 
""""""
""

and result = SUM(a+B+C) rs.

this is what i tried

cmd = new SqlCommand("Select (SUM(P_ttotal)+SUM(P_vatto)* (P_totdis)/100) as dis  from PRO_BILL", conn);

but it is throwing exception P_totdis is not in group by clause....
 help me in this.
any help will be appreciated 

Answers (3)
1
varsha dodiya

varsha dodiya

NA 415 42.8k 10y
i solved it 

Select Cast(SUM((O_ttotal + P_vatto) * (P_totdis / 100)) As Decimal(9,2)) As TotalDiscount From PRO_BILL
0
varsha dodiya

varsha dodiya

NA 415 42.8k 10y
@Abrar that i also know, in this way i get two answers i want the whole total of (A+B+C) not (A+B) and C
0
Khan Abrar Ahmed

Khan Abrar Ahmed

NA 5.8k 200k 10y
HI, when you are using the aggregate sql function then you have to define the group by clause.

like 
cmd = new SqlCommand("Select (SUM(P_ttotal)+SUM(P_vatto)* (P_totdis)/100) as dis  from PRO_BILL group by P_totdis", conn);