上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页
摘要: HAVING对由sum或其它集合函数运算结果的输出进行限制。比如,我们可能只希望看到Store_Information数据表中销售总额超过1500美圆的商店的信息,这时我们就需要使用HAVING从句。语法格式为: SELECT "column_name1", SUM("column_name2") ... 阅读全文
posted @ 2015-09-05 16:40 bobo-bobo 阅读(211) 评论(0) 推荐(0) 编辑
摘要: sql over的作用及用法RANK ( ) OVER ( [query_partition_clause] order_by_clause )DENSE_RANK ( ) OVER ( [query_partition_clause] order_by_clause )可实现按指定的字段分组排序,... 阅读全文
posted @ 2015-09-05 16:33 bobo-bobo 阅读(14506) 评论(0) 推荐(0) 编辑
摘要: /*table1结构如下id intname varchar(50)*/declare @id intdeclare @name varchar(50)declare cursor1 cursor for --定义游标cursor1select * from table1 ... 阅读全文
posted @ 2015-09-05 15:39 bobo-bobo 阅读(545) 评论(0) 推荐(0) 编辑
摘要: null 阅读全文
posted @ 2015-08-28 10:55 bobo-bobo 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 找到C:\Program Files\Common Files\Microsoft Shared\OFFICE12\Office Setup Controller,将这个文件夹删除或改名,就不再出现提示了 阅读全文
posted @ 2015-08-28 10:47 bobo-bobo 阅读(904) 评论(0) 推荐(0) 编辑
摘要: string str = ""; for (int i = 0; i < j; i++){ str = str + "\\新建文件夹" ;}System.IO.Directory.CreateDirectory(@"F:\" + str); 阅读全文
posted @ 2015-08-27 08:40 bobo-bobo 阅读(2690) 评论(0) 推荐(0) 编辑
摘要: 可能你遇到的问题是没有访问权限 解决方法如下: 1,在你的mdf和log文件上,点右键->属性->安全添加你的权限 阅读全文
posted @ 2015-08-25 20:06 bobo-bobo 阅读(1966) 评论(0) 推荐(0) 编辑
摘要: 一、问题在Management Studio中新建维护计划时,提示以下错误信息:“代理XP”组件已作为此服务器安全配置的一部分被关闭。系统管理员可以使用sp_configure来启用“代理XP”。有关启用“代理XP”的详细信息,请参阅SQL Server联机丛书中的“外围应用配置器”。(Object... 阅读全文
posted @ 2015-08-25 19:15 bobo-bobo 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\ftp]@="URL:File Transfer Protocol""AppUserModelID"="Microsoft.InternetExplorer.Default""EditFla... 阅读全文
posted @ 2015-08-25 16:22 bobo-bobo 阅读(1558) 评论(0) 推荐(0) 编辑
摘要: GO CREATE FUNCTION [dbo].[c_GetUTF8Code] ( @char Nchar )RETURNS intAS --UTF8转码BEGIN Declare @Code int Select @Code=Cast(Unicode(@char) a... 阅读全文
posted @ 2015-08-14 08:13 bobo-bobo 阅读(1306) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页