通常情况下,对于那些经常为别人提供数据接口的开发人员来说,对于调用方传递过来的参数都会有验证处理.例如: if (string.IsNullOrEmpty(entity.Name)) { //当姓名为空时,......... } if (entity.Age<0 || entity.Age>100) { //当年龄小于0或大于100时,有的人可能超过一百岁,我希望我的有生之年Age>100,emm,......... } if (string.IsNullOrEmpty(entity.P
mysql中判断字段为null或者不为null 在mysql中,查询某字段为空时,切记不可用 = null, 而是 is null,不为空则是 is not null select nulcolumn from table; if nuncolumn is null then select 1; else select 2; end if; 执行存储过程 调用过程:call sp_add (1,2,@a);select @a;