Loading

上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 39 下一页
摘要: 临时表 可以创建本地临时表和全局临时表。本地临时表仅在当前会话中可见,而全局临时表在所有会话中都可见。临时表不能分区。 本地临时表的名称前面有一个数字符号 (#table_name),而全局临时表的名称前面有两个数字符号 (##table_name)。 SQL 语句使用 CREATE TABLE 语句中为 table_name 指定的值引用临时表,例如: 复制代码 CREATE TA... 阅读全文
posted @ 2008-11-29 11:14 .net's 阅读(705) 评论(0) 推荐(0)
摘要: 读取作为输入提供的 XML 文本,然后使用 MSXML 分析器 (Msxmlsql.dll) 对其进行分析,并提供分析后的文档供使用。分析后的文档对 XML 文档中的各节点(元素、属性、文本和注释等)的树状表示形式。 sp_xml_preparedocument 返回一个句柄,可用于访问 XML 文档的新创建的内部表示形式。该句柄在会话的持续时间内有效,或者通过执行 sp_xml_removedo... 阅读全文
posted @ 2008-11-28 22:34 .net's 阅读(639) 评论(0) 推荐(0)
摘要: OPENXML 通过 XML 文档提供行集视图。由于 OPENXML 是行集提供程序,因此可在会出现行集提供程序(如表、视图或 OPENROWSET 函数)的 Transact-SQL 语句中使用 OPENXML。 Transact-SQL 语法约定 语法 OPENXML( idoc int [ in] , rowpattern nvarchar [ in ] , [ f... 阅读全文
posted @ 2008-11-28 22:29 .net's 阅读(634) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->String.fromCharCode(72,69,76,76,79); //HELLO String.fromCharCode(num1,num2,,numx); 阅读全文
posted @ 2008-11-28 14:40 .net's 阅读(643) 评论(0) 推荐(0)
摘要: http://qsh.eu/en/Default.aspx 阅读全文
posted @ 2008-11-27 08:08 .net's 阅读(502) 评论(0) 推荐(0)
摘要: sql中有聚合函数,group by的时候,聚合函数都是取该分组中符合的那个数据。 如下图所示,在asp分组中,ad中最大为v,em中最大为13,都是取该分组中的最大值, 并不是一定是属于同一行。 所以,根据某个字段(如最大值)去取的某一行的数据时,不能有2个以上的聚合函数一起用。 除非,想获得的数据可以不是同一行的。 阅读全文
posted @ 2008-11-25 22:38 .net's 阅读(891) 评论(0) 推荐(0)
摘要: 因隐藏字段不支持focus()方法,故需排除掉 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 阅读全文
posted @ 2008-11-22 11:54 .net's 阅读(397) 评论(0) 推荐(0)
摘要: Introduction: The article "ASP.Net 2.0: Export GridView to Excel" received a very good response from our user community. Some of the excellent tips collected from the user feedback have been included... 阅读全文
posted @ 2008-11-22 10:01 .net's 阅读(531) 评论(0) 推荐(0)
摘要: Introduction: In this article, we will see how to Export an ASP.Net 2.0 GridView to Excel. The focus of the article is the Export to Excel functionality - the Gridview and it's data binding are only... 阅读全文
posted @ 2008-11-21 22:18 .net's 阅读(1019) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->class Program { static void Main(string[] args) { OperateAccess()... 阅读全文
posted @ 2008-11-20 12:03 .net's 阅读(802) 评论(3) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 39 下一页