1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
drop table [Suivi general]
SELECT DISTINCT [Somme / Client].[Code client],
[Somme / Client].[SommeDeMnt non affecté],
[Somme / Client].[SommeDeMnt échu],
[Somme / Client].SommeDeEffet,
[Somme / Client].SommeDeDouteux,
CLIE.NOMCLIE AS [Nom Client],
[commercial par agent de recouvrement].NOMCIAL AS Commercial,
[information complémentaire client].collectivité,
[information complémentaire client].[suspension des prestations],
[information complémentaire client].[alerte manuelle],
CLIE.CODECLIE, [commercial par agent de recouvrement].Agent,
[agents de recouvrement].Nom, [max retard par client].retard INTO dbo.[Suivi general]
FROM ((([Somme / Client] LEFT JOIN [information complémentaire client] ON [Somme / Client].[Code client] = [information complémentaire client].CODE_CLIE) LEFT JOIN CLIE ON [Somme / Client].[Code client] = CLIE.CODECLIEU) LEFT JOIN [max retard par client] ON [Somme / Client].[Code client] = [max retard par client].[Code client]) LEFT JOIN ([commercial par agent de recouvrement] LEFT JOIN [agents de recouvrement] ON [commercial par agent de recouvrement].Agent = [agents de recouvrement].[Agent de recouvrement]) ON CLIE.CODECIAL_CIAL = [commercial par agent de recouvrement].CODECIAL
WHERE [max retard par client].retard>0 Or [max retard par client].retard Is Null
ORDER BY [Somme / Client].[Code client], [max retard par client].retard
print 'suivi general' |
Partager