上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 80 下一页
摘要: private string HttpPost(string Url, string postDataStr) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url); ... 阅读全文
posted @ 2015-10-17 09:02 唔愛吃蘋果 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 解决SQL中in参数在存储过程中的传递问题CSDN中有这样一个帖子地址:http://bbs.csdn.net/topics/110108650问题:比如有一个SQLSELECT * FROM SELTEXT WHERE ID IN (1,2,3,4)我希望创建一个存储过程比如:CREATE PRO... 阅读全文
posted @ 2015-10-10 14:22 唔愛吃蘋果 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: jQuery Timers插件地址:http://plugins.jquery.com/project/timersJQuery Timers应用知识提供了三个函式1. everyTime(时间间隔, [计时器名称], 函式名称, [次数限制], [等待函式程序完成])2. oneTime(时间间隔... 阅读全文
posted @ 2015-10-08 12:40 唔愛吃蘋果 阅读(2184) 评论(0) 推荐(0) 编辑
摘要: QL update select语句最常用的update语法是:12UPDATE TABLE_NAMESET column_name1 = VALUE WHRER column_name2 = VALUE如果我的更新值Value是从一条select语句拿出来,而且有很多列的话,用这种语法就很麻烦第一... 阅读全文
posted @ 2015-09-30 13:38 唔愛吃蘋果 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 企业管理器 --管理 --SQL Server代理 --右键作业 --新建作业 --"常规"项中输入作业名称 --"步骤"项 --新建 --"步骤名"中输入步骤名 --"类型"中选择"Transact-SQL 脚本(TSQL)" --"数据库"选择执行命令的数据库 --"... 阅读全文
posted @ 2015-09-30 09:57 唔愛吃蘋果 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 有时候我们想在js里面使用加密,jQuery就提供了这样的插件,用法十分简单:下面是我的简单例子 阅读全文
posted @ 2015-09-28 22:02 唔愛吃蘋果 阅读(366) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Runtime.Serialization.Json;using System.Web;using System.Web.Script.Seria... 阅读全文
posted @ 2015-09-28 21:25 唔愛吃蘋果 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 我存储过程里想实现多个传入参数的判断,里面有7个传入参数条件.CREATEPROCEDUREsp_tbWasteSource_Search(@sddatetime,//开始日期@eddatetime,//结束日期@con1varchar(50),@con2varchar(30),@con3varch... 阅读全文
posted @ 2015-09-28 15:58 唔愛吃蘋果 阅读(22426) 评论(0) 推荐(2) 编辑
摘要: select * from [dbo].[AccountsInfo](nolock) where Accounts='lqm123123'select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tab... 阅读全文
posted @ 2015-09-25 15:10 唔愛吃蘋果 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 如:select Id,Name ,count(*) from Tablename group by Id .只按照Id分组,name不加入分组条件但是要在结果中显示出来?请问如何写呢?以及为什么要这样写呢?select Id,max(Name) ,count(*) from Tablename g... 阅读全文
posted @ 2015-09-25 14:47 唔愛吃蘋果 阅读(841) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 80 下一页