Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Double group by
Message
De
06/04/2017 04:24:43
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Double group by
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows 7
Network:
Windows Server 2008 R2
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01649833
Message ID:
01649833
Vues:
41
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform