SELECT
[dbo].[tBestellung].[cBestellNr] AS 'Auftragsnummer'
,[cRetoureNr] AS 'Retourennummer'
,[dbo].[tRMRetoure].[dErstellt] AS 'Retoure Erstellt'
,[dbo].[tRMRetourePos].[cGrundKommentar] AS 'Kommentar'
,[dbo].[tRMGrundSprache].cBeschreibung AS 'Rückgabegrund'
, [dbo].[tRMStatusSprache].[cName] AS 'Status'
FROM [dbo].[tRMRetoure]
INNER JOIN [dbo].[tBestellung] ON
[dbo].[tRMRetoure].kBestellung = [dbo].[tBestellung].[kBestellung]
INNER JOIN [dbo].[tRMRetourePos] ON
[dbo].[tRMRetourePos].[kRMRetoure] =[dbo].[tRMRetoure].[kRMRetoure]
INNER JOIN [dbo].[tRMGrundSprache] ON
[dbo].[tRMGrundSprache].[kRMGrund] = [dbo].[tRMRetourePos].[kRMGrund]
INNER JOIN [dbo].[tRMStatusSprache] ON
[tRMStatusSprache].[kRMStatus] = [tRMRetoure].[kRMStatus]
WHERE [dbo].[tBestellung].[kBestellung] = @Key
GROUP BY [dbo].[tBestellung].[cBestellNr], [cRetoureNr], [dbo].[tRMRetoure].[dErstellt], [dbo].[tRMRetourePos].[cGrundKommentar], [dbo].[tRMGrundSprache].[cBeschreibung], [dbo].[tRMStatusSprache].[cName]