
SQLSERVER
文章平均质量分 83
yinhe272680158
J2EE
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
设置内存选项
设置内存选项:SQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--设置 min server memory 配置项EXEC sp_configure N'min server m...原创 2009-08-25 23:59:40 · 132 阅读 · 0 评论 -
CONVERT在日期转换中的使用示例
CONVERT在日期转换中的使用示例.sql:SQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--字符转换为日期时,Style的使用--1. Style=101时,表示日期字...原创 2009-08-26 00:00:48 · 213 阅读 · 0 评论 -
特殊日期加减函数
特殊日期加减函数.sqlSQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->if exists (select * from dbo.sysobjects where id = obje...原创 2009-08-26 00:01:41 · 137 阅读 · 0 评论 -
工作日处理函数(标准节假日).
工作日处理函数(标准节假日).sqlSQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->if exists (select * from dbo.sysobjects where id ...原创 2009-08-26 00:02:26 · 595 阅读 · 0 评论 -
复杂年月处理
复杂年月处理.sqlSQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--定义基本数字表declare @T1 table(代码 int,名称 varchar(10),参加时间 d...原创 2009-08-26 00:03:18 · 127 阅读 · 0 评论 -
统计--交叉表+日期+优先
统计--交叉表+日期+优先.sqlSQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--交叉表,根据优先级取数据,日期处理create table tb(qid int,rid...原创 2009-08-26 00:04:13 · 142 阅读 · 0 评论 -
各种字符串合并处理示例
各种字符串合并处理示例.sqlSQL code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--各种字符串分函数--3.3.1 使用游标法进行字符串合并处理的示例。--处理的数据C...原创 2009-08-26 00:05:03 · 105 阅读 · 0 评论