摘要:
//list获取某一列的和 decimal total = detailList.Sum(n => n.Amount); 可空类型转换int? int int? test = null; //定义一个int?赋值空 int a = test ?? 0; //test??0 当test不为空时,直接返 阅读全文
摘要:
function fun_date(a){ var date1 = new Date(), time1=date1.getFullYear()+"-"+(date1.getMonth()+1)+"-"+date1.getDate(); var date2 = new Date(date1); dat 阅读全文
摘要:
UPDATE dbo.PingDingItem SET PinYin=REPLACE(PinYin,'熏','X') WHERE id IN(213) 替换函数 select distinct stuff((SELECT ',' + TypeName+'('+DoctorName+')' FROM 阅读全文