SQL Case statement with subquery

520 Views Asked by At

can somebody tell me what wrong with my case statement?

select
(case 
       when (select top 1 descr from t1 inner join t2 on t2.id = t1.id where t1.code = '17418')= 'C' Then 'Cancelled'<br/>
       when (select top 1 descr from t1 inner join t2 on t2.id = t1.id where t1.code = '100020')= 'CL' Then 'Closed'<br/>
       when (select top 1 descr from t1 inner join t2 on t2.id = t1.id where t1.code = '1105')= 'R' Then 'Reserved'<br/>
       when (select top 1 descr from t1 inner join t2 on t2.id = t1.id where t1.code = '1106')= 'S' Then 'Scheduled' <br/>
       else null end ) <br/>
From table
1

There are 1 best solutions below

0
On

I think you wanted to do something like this :)

select CASE t1.descr   
  WHEN 'C' THEN 'Cancelled' 
  WHEN 'CL' THEN 'Closed'  
  WHEN 'R' THEN 'Reserved' 
  WHEN 'S' THEN 'Schedule' 
  ELSE  
END as  descr_Text 
  from t1 
 inner join t2 on t2.id = t1.id
where t1.code in('17418','100020','1105',....)