SELECT
kLHM as 'Box-Nr.',
FORMAT (dZeitstempel, 'dd.MM.yyyy HH:mm') as Uhrzeit,
CASE nStatus
WHEN 10 THEN 'Box leer'
WHEN 20 THEN 'Bestellung zugewiesen'
WHEN 25 THEN 'Bestellnung nicht komplett'
WHEN 30 THEN 'Gedruckt'
END as [status]
FROM tLHMStatus
WHERE tLHMStatus.kBestellung = @Key
ORDER BY dZeitstempel ASC