上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页
摘要: --SET STATISTICS io ONSET STATISTICS TIME ON select * from tbSET STATISTICS TIME OFF--SET STATISTICS io OFF--执行后点“消息”那里,会有如下显示--(1 行受影响)--SQL Server 执... 阅读全文
posted @ 2011-08-15 16:58 风一样的大叔 阅读(528) 评论(0) 推荐(0) 编辑
摘要: //将用户数据缓存userinfocatch(json);///用户信息缓存function userinfocatch(obj) { $.data(document.body, "userinfo_catch", obj);}//读取缓存function userinfo() { var a = ... 阅读全文
posted @ 2011-08-15 16:57 风一样的大叔 阅读(124) 评论(0) 推荐(0) 编辑
摘要: //缺一位select top 1 * from PRO_Precisionstretch_Merge where rodno like @rodno+'_' and right(rodNO,1) > 'G' order by rodNO asc//缺多位select top 1 * from PR... 阅读全文
posted @ 2011-08-15 16:55 风一样的大叔 阅读(159) 评论(0) 推荐(0) 编辑
摘要: insert into [正式库]..表名 select * from [测试库]..相同表名 阅读全文
posted @ 2011-08-15 16:54 风一样的大叔 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 一、字符转换函数1、ASCII()返回字符表达式最左端字符的ASCII 码值。在ASCII()函数中,纯数字的字符串可不用‘’括起来,但含其它字符的字符串必须用‘’括起来使用,否则会出错。2、CHAR()将ASCII 码转换为字符。如果没有输入0 ~ 255 之间的ASCII 码值,CHAR() 返... 阅读全文
posted @ 2011-08-13 08:40 风一样的大叔 阅读(108) 评论(0) 推荐(0) 编辑
摘要: if (this.txtapplRegDate.Value.Trim() != "") //登记日期 { sqlStr.Append(" and applRegDate >= '" + this.txtapplRegDate.Value + " 00:00:00'"); } 阅读全文
posted @ 2011-08-11 22:09 风一样的大叔 阅读(1217) 评论(0) 推荐(0) 编辑
摘要: function CheckNum(number) { var regNum = /^[\d]+$/; var re=new RegExp(regNum); if (re.test(number.value)) { return true; } else { alert("必须是数字!"); doc... 阅读全文
posted @ 2011-08-11 22:07 风一样的大叔 阅读(416) 评论(0) 推荐(0) 编辑
摘要: //前台' ForeColor=''>//后台"(CASE WHEN Apply.applStatusID=0 THEN '未处理' when Apply.applStatusID=1 THEN '已审批' when Apply.applStatusID=2 THEN '退回' END) as ap... 阅读全文
posted @ 2011-08-11 22:03 风一样的大叔 阅读(167) 评论(0) 推荐(0) 编辑
摘要: if(!CheckEmail(document.getElementById("txtMail").value.trim())){ alert('电子邮箱格式不正确!'); document.getElementById("txtMail").focus(); return false; } 阅读全文
posted @ 2011-08-11 22:02 风一样的大叔 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-08-11 22:01 风一样的大叔 阅读(174) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页