Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Ordina per e diversi tipi in un CASO

Un'istruzione CASE deve essere risolta in un solo tipo di dati. Questo indipendentemente dal fatto che tu sappia che @orderby sceglierà un solo ramo e sarà un tipo di dati particolare.

Potresti usare qualcosa del genere, che sarebbe goffo ma funzionerà.

ORDER BY
CASE @orderBy WHEN 1 THEN received_date -- Last Rx'd message
WHEN 2 THEN 0
WHEN 3 THEN 0
WHEN 4 THEN 0
WHEN 5 THEN ime.[allocated_date] -- Allocated Date
ELSE received_date END,
CASE @orderBy WHEN 1 THEN 0
WHEN 2 THEN message_id -- Message Id
WHEN 3 THEN 0
WHEN 4 THEN 0
WHEN 5 THEN 0
ELSE 0 END,
CASE @orderBy WHEN 1 THEN ''
WHEN 2 THEN ''
WHEN 3 THEN zibmat.short_name -- Message action type
WHEN 4 THEN error_action.short_name -- Status type
WHEN 5 THEN ''
ELSE '' END