34,837
社区成员




select CASE when infotime is Null then '2009-10-10' else infotime end from info
select coalesce(infotime,'2009-10-10') infotime from info
select isnull(infotime,'2009-10-10') infotime from info
select case when infotime is null then '2009-10-10' end from info