MSDN è un buon riferimento per questo tipo di domande relative alla sintassi e all'utilizzo. Questo è dalla pagina Transact SQL Reference - CASE.
http://msdn.microsoft.com/en-us/library/ms181765.aspx
USE AdventureWorks2012;
GO
SELECT ProductNumber, Name, "Price Range" =
CASE
WHEN ListPrice = 0 THEN 'Mfg item - not for resale'
WHEN ListPrice < 50 THEN 'Under $50'
WHEN ListPrice >= 50 and ListPrice < 250 THEN 'Under $250'
WHEN ListPrice >= 250 and ListPrice < 1000 THEN 'Under $1000'
ELSE 'Over $1000'
END
FROM Production.Product
ORDER BY ProductNumber ;
GO
Un altro buon sito che potresti voler controllare se stai usando SQL Server è SQL Server Central. Questo ha una grande varietà di risorse disponibili per qualsiasi area di SQL Server che vorresti imparare.