数据库

本类阅读TOP10

·SQL语句导入导出大全
·Power Designer杂记
·SQL Server日期计算
·常用的oracle函数使用说明(一)
·sqlserver2000数据库置疑的解决方法
·MS SQLServer OLEDB分布式事务无法启动的一般解决方案
·SQL to Excel 的应用
·SQL语句导入导出大全
·Error:ORA-01033:ORACLE initialization or shutdown in progress错误解决
·Oracle中password file的作用及说明

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
SQL 一些小技巧

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

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,janet,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




相关文章

相关软件




月光软件程序下载编程文档电脑教程网站设计网址导航网络文学游戏天地幽默笑话生活休闲写作范文安妮宝贝
电脑技术编程开发网络专区谈天说地情感世界游戏元素分类游戏热门游戏体育运动手机专区业余爱好影视沙龙
音乐天地数码广场教育园地科学大观古今纵横谈股论金人文艺术医学保健动漫图酷二手专区地方风情各行各业

月光软件站·版权所有