SQLSERVER的函数

来源:互联网 发布:c 定义json对象数组 编辑:程序博客网 时间:2024/06/06 14:27
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
1.字符串函数
长度与分析用
datalength(Char_expr)返回字符串包含字符数,但不包含后面的空格
substring(expression,start,length)不多说了,取子串
right(char_expr,int_expr)返回字符串右边int_expr个字符
字符操作类
upper(char_expr)转为大写
lower(char_expr)转为小写
space(int_expr)生成int_expr个空格
replicate(char_expr,int_expr)复制字符串int_expr次
reverse(char_expr)反转字符串
stuff(char_expr1,start,length,char_expr2)将字符串char_expr1中的从start开始的length个字符用char_expr2代替
ltrim(char_expr)rtrim(char_expr)取掉空格
ascii(char)char(ascii)两函数对应,取ascii码,根据ascii吗取字符
字符串查找
charindex(char_expr,expression)返回char_expr的起始位置
patindex("%pattern%",expression)返回指定模式的起始位置,否则为0
2.数学函数
abs(numeric_expr)求绝对值
ceiling(numeric_expr)取大于等于指定值的最小整数
exp(float_expr)取指数floor(numeric_expr)小于等于指定值得最大整数
pi()3.1415926.........
power(numeric_expr,power)返回power次方
rand([int_expr])随机数产生器
round(numeric_expr,int_expr)安int_expr规定的精度四舍五入
sign(int_expr)根据正数,0,负数,,返回+1,0,-1
sqrt(float_expr)平方根
3.日期函数
getdate()返回日期
datename(datepart,date_expr)返回名称如June
datepart(datepart,date_expr)取日期一部份
datediff(datepart,date_expr1.dateexpr2)日期差
dateadd(datepart,number,date_expr)返回日期加上number
上述函数中datepart的写法取值和意义
yy1753-9999年份
qq1-4刻
mm1-12月
dy1-366日
dd1-31日
wk1-54周
dw1-7周几
hh0-23小时
mi0-59分钟
ss0-59秒
ms0-999毫秒
日期转换convert()
4.系统函数
suser_name()用户登录名
user_name()用户在中的名字user用户在数据库中的名字
show_role()对当前用户起作用的规则
db_name()数据库名
object_name(obj_id)数据库对象名
col_name(obj_id,col_id)列名
col_length(objname,colname)列长度
valid_name(char_expr)是否是有效标识符

<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 728x15, 创建于 08-4-23MSDN */google_ad_slot = "3624277373";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<script type="text/javascript"><!--google_ad_client = "pub-2947489232296736";/* 160x600, 创建于 08-4-23MSDN */google_ad_slot = "4367022601";google_ad_width = 160;google_ad_height = 600;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>