日期:2014-05-17 浏览次数:20577 次
use tempdb go if object_id('#') is not null drop table # create table #(id int) insert into #(id)values(1),(0),(0),(2) select nullif(id,0) as id from # -------------------------------------- 1 NULL NULL 2
查询一个数据表,如何处理列里面0的数据转为NULL输出,让页面整洁。不用CASE