A consulta é:
Select
Case AStatus
When 1 then 'Success'
When 0 then 'Faliure'
END,
Case AStatus
When 1 then 'AStatus'
When 0 then 'AStatus'
END,
Case AStatus
When 1 then 'Expected:1'
When 0 then 'Recived: 0'
END
From Statuses
Where LocalPath= 'c:\Status'
A consulta original que não funcionou bem no SQL Server Compact (e igual à consulta acima) é:
Select
Case AStatus
When 1 then 'Success', 'AStatus', 'Expected:1'
When 0 then 'Faliure', 'AStatus', 'Recived: 0'
end
From Statuses
Where LocalPath= 'c:\Status
Não há
CASE
instrução de valor múltiplo no T-SQL. No entanto, você pode fazer uma junção a uma fonte de linha de valor constante como esta: