Example:
select c_id,'VIP Customer' [Customer Level] from customer where ...
union
select c_id,'Regular Customer' [Customer Level] from customer where ...
if c_id is part of first level (VIP) can't be 2nd level(Regular). I am using Union it's not working because second column data is different.
Can someone suggest?
 
     
     
     
     
     
     
    