• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

SQL 一些小技巧

发布: 2007-7-02 11:08 | 作者: admin | 来源: | 查看: 20次 | 进入软件测试论坛讨论

领测软件测试网
These has been picked up from thread within sqljunkies Forums http://www.sqljunkies.com

Problem
The problem is that I need to round differently (by halves)
Example: 4.24 rounds to 4.00, but 4.26 rounds to 4.50.
4.74 rounds to 4.50 and 4.76 rounds to 5.00

Solution
declare @t float
set @t = 100.74
select round(@t * 2.0, 0) / 2

Problem
I@#m writing a function that needs to take in a comma seperated list and us it in a where clause. The select would look something like this:

select * from people where firstname in (@#larry@#,@#curly@#,@#moe@#)

Solution
use northwind
go

declare @xVar varchar(50)
set @xVar = @#anne,j.net,nancy,andrew, robert@#

select * from employees where @xVar like @#%@# + firstname + @#%@#


Problem
Need a simple paging sql command

Solution
use northwind
go

select * from products a
where (select count(*) from products b where a.productid >= b.productid) between 15 and 16


Problem
Perform case-sensitive comparision within sql statement without having to use the SET command

Solution

use norhtwind
go

SELECT * FROM products AS t1
WHERE t1.productname COLLATE SQL_EBCDIC280_CP1_CS_AS = @#Chai@#

--execute this command to get different collate naming
--select * from ::fn_helpcollations()

 

Problem
How to call a stored procedure located in a different server

Solution

SET NOCOUNT ON
use master
go

EXEC sp_addlinkedserver @#172.16.0.22@#,N@#Sql Server@#
go

Exec sp_link_publication @publisher = @#172.16.0.22@#,
@publisher_db = @#Northwind@#,
@publication = @#NorthWind@#, @security_mode = 2 ,
@login = @#sa@# , @password = @#sa@#
go

EXEC [172.16.0.22].northwind.dbo.CustOrderHist @#ALFKI@#
go

exec sp_dropserver @#172.16.0.22@#, @#droplogins@#
GO

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网