摘要:
若b列的值都为1则返回Y,否则返回X declare @t table(a int,b int)insert @tselect 1,1 union all select 2,1 union all select 3,1 union all select 4,0 select b=case when exists(select b from @t where b1) then 'X' else 'Y... 阅读全文
摘要:
重载:(2必须1可以) 方法名必须相同 参数列表必须不相同 返回类型可以不相同 覆写:(3相同) 方法名必须相同 ... 阅读全文