SQL Server 2005 中的算数运算

1. 求x的y次方

declare   @n   int
set   @n=3
select   power(2,@n)

 

 

2. 求x的平方

select Square(3)

--2的3次方, 结果应该是8

 

 

3. 求x的平方根

select  sqrt(4)

--4的平方根是2

 

 

4. 求绝对值

select abs(-3)

--结果是3

 

 

5.

posted @ 2008-08-01 16:15  Simon.guo  阅读(265)  评论(0编辑  收藏  举报