简体   繁体   中英

how to treat empty cells

I am using SQL Server and I have a manager that just left. When I pull the record for sales, the section that shows the manager's name is empty for that team's orders. How can I make it so it shows the word OPEN when that happens?

I tried

Select
    Sales_Rep_Name,
    isnull([manager_name],'open') As [Manager Name]
From 
    Salestable

but it didn't work. I also tried a case

Select
    Sales_Rep_Name,
    case    
       when [MANAGER_NAME] is null 
          then 'open'
          else [MANAGER_NAME]
    end as [Manager Name]
From
    SalesTable

The query works but the cells still show empty. Is there anything I am doing wrong? Thanks

@jnevill & Evan I just verified that the cell actually has a space. I switched the case to = ' ' and it works now. Thank you guys.

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