PC6下载站

分类分类

sqlsever函数集合 数学函数,系统函数

关注+2011-07-09作者:清晨

《sqlserver应用开发》
1。返回限制行
select top 5 name...
2.列名 is null
使用表达式,函数,
3.在查询中使用函数;
  1。字符串函数
部分常用的字符串函数
函数名           描述
charindex       用来寻找一个指定的字符串在另一个字符串中的起始位置 
                select charindex('ACCP','My   Accp course',1);   返回4
len              长度  Lower 小写  upper 大写
ltrim 清除字符左边空格
Rtrim 清除字符右边空格
right 从字符串左边返回指定数目的字符  
       select right('买卖顺要和',3);   返回:顺要和
replace 替换一个字符串的字符  select replace('莫乐可切.杨可','可','兰'); 返回:莫乐兰切.杨兰
  2.日期函数
 getdate 取今天的日期  select getdate();
 dateadd    select dateadd(mm,4,'01/01/99')
  datename 日期中指定日期部分的字符串形式  selectdatename(dw,'01/01/2000');返回:Saturday
  datepart 日期中指定日期部分的整数形式  select datepart(day,'01/15/2000');返回: 15
3。数学函数
ABC绝对值
ceiling >=最小整数
floor   <=最大整数
power 幂
  power(5,2)  返回:25
Round 四舍五入为指定精度 Round(43.5645,1);  返回:43.5
sign  正数返回+1,负数返回-1,0返回0;  sign(-43)返回:-1
sort(9)  平方根
返回:3


展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消