简体   繁体   中英

Case Expression on a created column using Microsoft SQL

Within a view I put put together a select statement within a case and delcared it as a column. The column name is 'IR2'

How can I case off of the column 'IR2'?

I end up getting an error which says 'Invalid Column Name 'IR2'.

What are my work around options?

case when r.ana = 'nh3' and r.serv='energy' and exists( select 1 from results x where x.no=r.no and x.ana='nh3' and x.sa='rejected' and x.serv <> 'energy')
then '*' else r.sa end as IR2,

CASE IR2 WHEN 'Released' then
 '' 
 ELSE
 '*' 
 END AS IR

You can use a subquery or CTE. But another fun way in SQL Server is using outer apply :

select v.IR2,
       (case IR2 when 'Released' then '' else '*' end) as ir
from . . . outer apply
     (values (case when r.ana = 'nh3' and r.serv='energy' and
                        exists( select 1 from results x where x.no=r.no and x.ana='nh3' and x.sa='rejected' and x.serv <> 'energy')
                   then '*' else r.sa
              end)
     ) v(IR2)

CTE would be the best choice. If you want to continue with current statement, you need to put a copy of the case statement in other case statement. Very messy code.

SELECT
case when r.ana = 'nh3' and r.serv='energy' and 
exists( select 1 from results x where x.no=r.no and x.ana='nh3' and x.sa='rejected' and x.serv <> 'energy')
then '*' else r.sa end as IR2,

CASE 
    (case when r.ana = 'nh3' and r.serv='energy' 
        and exists( select 1 from results x where x.no=r.no and x.ana='nh3' and x.sa='rejected' and x.serv <> 'energy') 
        then '*' else r.sa end)
WHEN 'Released' then
    '' 
ELSE
    '*' 
END AS IR

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM