日期:2014-05-18 浏览次数:20688 次
/*----------------------------
-- Author :feixianxxx(poofly)
-- Date :2010-04-20 20:10:41
-- Version:
-- Microsoft SQL Server 2008 (SP1) - 10.0.2531.0 (Intel X86)
Mar 29 2009 10:27:29
Copyright (c) 1988-2008 Microsoft Corporation
Enterprise Evaluation Edition on Windows NT 6.1 <X86> (Build 7600: )
-- CONTENT:SQL SERVER中一些特别地方的特别解法2
----------------------------*/
--环境
create table test_1
(
id int,
value varchar(10),
t_time datetime
)
insert test_1
select 1,'a','2009-04-19' union
select 2,'b','2009-04-20' union
select 3,'c','2009-04-21' union
select 4,'d','2009-04-22' union
select 5,'e','2009-04-23' union
select 6,'f','2009-04-24' union
select 7,'g','2009-04-25'
go
我们一般通过 datepart(weekday )进行求解,比如求解星期2的记录
select * from test_1
where DATEPART(WEEKDAY,t_time+@@DATEFIRST-1)=2
/*
id value t_time
----------- ---------- -----------------------
3 c 2009-04-21 00:00:00.000
*/
这里涉及到 @@datefirst 这个系统变量,一般我们用来调节不同地方的日期习惯。
如果你觉得关于这个变量很难也懒得去依赖它调节,这里还有一种方法
你可以使用一个参照日期,通过相同星期数成7的倍数的原理进行查询
select * from test_1
where DATEDIFF(DAY,'1900-01-02',t_time)%7=0
/*
id value t_time
----------- ---------- -----------------------
3 c 2009-04-21 00:00:00.000
*/
--环境
--drop table test_2
create table test_2
(
id int identity(1,1),
value varchar(10)
)
insert test_2 select
'abc' union all select
'Abc' union all select
'ABC' union all select
'aBc'
go
create clustered index in_value on test_2(value)
--我先要查找 值为'ABC'的记录 要区分大小写的
select * from test_2
where value COLLATE CHINESE_PRC_CS_AS ='ABC'
按CTRL+L看执行计划 发现时聚集索引扫描 这就说明它不是SARG,不考虑使用索引
解决方法:
select * from test_2
where value COLLATE CHINESE_PRC_CS_AS ='ABC'
and value='ABC'
go
看执行计划,结果是聚集索引查找;
在某些情况下,你可能需要跨会话的维护一些共享值,这里可以通过一些手段自动建立这样一个全局临时表够你使用
具体方法就是在master数据库中建立一个以sp_开头的特殊存储过程,并且使用'startup'标志此存储过程,这样每次重启数据库后都会自动运行此存储过程,
通过在存储过程中建立全局临时表,就达到了共享全局表的目的。
create procedure sp_Create_Global
as
create table ##Global
(
name varchar(50),
value sql_variant
)
go
sp_procoption 'sp_Create_Global','startup','true'
go
cmd->net stop mssqlserver
cmd->net start mssqlserver
insert ##Global values('var_1','987abc')
select * from ##Global
动态批处理中 EXEC 不像 sp_executesql 一样提供接口(这里就讲输出参数) 但是也有方法去解决这个问题
--环境:
create table test_3
(
id int identity(1,1),
value int
)
insert test_3
select 1 union
select 5 union
select 9
go
1.全部写入动态字符串中
exec (
'declare @n int
select @N=count(*) from test_3
select @N '
)
2.INSERT EXEC 形式
create table #cnt(n int)
insert #cnt
exec('select count(*) from test_3 ')
declare @cnt int
set @cnt=(select N from #cnt)
select @cnt
3.动态批处理直接导入临时表
create table #cnt_2(n int)
exec (
'insert #cnt_2
select count(*) from test_3'
)
declare @cnt int
set @cnt=(select N from #cnt)
select @cnt
推荐阅读更多>
-
插入-查询语句-捆绕着小弟我…help
-
怎么编写一个将十进制数(小于10)转换成二进制数(4位)函数
-
查看mysql用户连接数解决思路
-
数据统计有关问题,求解答,
-
有没有详细讲 脏读 不可重复读 跟 虚读的概念 及 详细 事例的教材
-
中英文字符串截取长度不同的有关问题
-
请教如何计算字段内数值的总和
-
兩個數據庫 UNION ALL 後的記錄有沒有辦法刪?解决办法
-
差异备份的有关问题
-
关于mysql2000跟2005几种常用指令的返回包信息
-
SQL日期筛选的有关问题
-
SQL 难题,求解,多谢
-
1号楼 2号楼 3号楼,n号楼,怎么按照order by LouHao ASC排序
-
两个表的组合查询,请大家帮忙.多谢
-
散分,进来有分,顺路玩个游戏.该如何处理
-
获取多个栏目下的新闻,如何写SQL语句
-
找出包含 A and B 但是不包含 C 的CustomerID
-
安装2005之后如何设置本地数据库
-
求一条Sql话语,将一个表中所有字段名提出并放在一个字符串或文本中
-
win7使用odbc连接SQL server2008数据库解决思路