Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Double group by
Message
From
06/04/2017 04:24:43
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Double group by
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows 7
Network:
Windows Server 2008 R2
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01649833
Message ID:
01649833
Views:
40
Dear Experts

I have these codes
SELECT acc_code,sum(open_dr) as dr_amount,sum(open_cr) as cr_amount
 from master where LEN(acc_code)>4 and left(acc_code,4)='2305'
 group by acc_code
the codes generates results group by acc_code like shown in attachment.

But I need sum of all codes in single row like this

2305-245585-356588

I used this query but it does not work
SELECT acc_code,sum(open_dr) as dr_amount,sum(open_cr) as cr_amount
 from master where LEN(acc_code)>4 and left(acc_code,4)='2305'
 group by LEFT(acc_code,2)='23'
Please help
Next
Reply
Map
View

Click here to load this message in the networking platform