解析Sqlserver常用函数_Mssql数据库教程
推荐:触发器学习触发器是一种特殊的存储过程,类似于其它编程语言中的事件函数,SQL Server 允许为 INSERT、UPDATE、DELETE 创建触发器,当在表(视图)中插入、更新、删除记录时,触发一个或一系列 T-SQL 语句。 1: 创建触发器 : 触发器可以在企业管理器里创建,也可以在
在操作SQLServer的时候, 很多时候记不住具体的函数如何使用, 查找联机帮助还是嫌麻烦, 且有很多时候例子也不好懂, 下面对每个常用的函数用用例子说明,一目了然,你自己在数据库中执行一下,结果就知道什么回事了
--字符串功能
--substring
print substring('iamagoodperson',1,5)
select substring('iamagoodperson',1,5)
--upper
select upper('he is a good person')
--lower
select LOWER('this is an VERY interesting job')
--ltrim
select ltrim(' i am a good person')
--rtrim
select rtrim(' heihei,i do not know why it likes this ')
--replace
select replace('iwanttoaskyou','ttoa','i love you')
--stuff
select stuff('我的名字是朱旭杰',6,8,'summer')
--Date/Time Fuction
--getdate()
select getdate() as 'today'
--dateadd()
select dateadd(yy,10,getdate())
--datediff()
select datediff(yy,'1982/5/3',getdate()) as
--datepart()
select datepart(dw,getdate())
select datepart(yy,getdate())
select datepart(mm,getdate())
select datepart(dd,getdate())
select datepart(ss,getdate())
select datepart(ms,getdate())
select datepart(dd,'1982/5/3')
print datepart(dw,'1982/8/22')
--day(),相当于datepart(dd,时间)
select day('1982/5/3')
select day(getdate())
--month(),相当于datepart(mm,时间)
select month(getdate())
--year(),相当于datepart(yy,时间)
select year(getdate())
--数学函数
--abs()
select abs(-100.3456)
--sin()
select sin(0.54)
--cos()
select cos(3.14)
--power()
select power(10,2)
--round 返回数字表达式并四舍五入为指定的长度或精度
select round(100.45,1)
select round(123,45,-2)
--floor()
select floor(4.9)
select floor(-123.99)
--ceiling()
select ceiling(4.9)
select ceiling(-123.99)
--sqrt()
select sqrt(100)
--square
select square(10)
select square(-15)
--转换函数
--cast()
select cast(100.45 as int)
select cast(1345 as varchar(10))
--convert()
select convert(int,100.56)
select convert(varchar(10),2345)
--空值函数
--isnull()
declare @temp_table table
(
bookID VARCHAR(10) primary key,
book_price float default null,
bookName varchar(50)
)
insert into @temp_table values('1',50,'c#')
insert into @temp_table values('2',null ,'c')
select bookID AS '书的编号',isnull(book_price,0) as '书的价格'
from @temp_table
--nullif(),只要参数里的两个表达式相同就返回null
select nullif('iam','iam')
--coalesce返回其参数中第一个非空表达式
select coalesce(null,null,'i am a good boy')
分享:SQL SERVER数据库开发之存储过程应用由于个人能力有限,文章中难免会出现错误或遗漏的地方,敬请谅解!同时欢迎你指出,以便我能及时修改,以免误导下一个看官。最后希望本文能给你带来一定的帮助。 可能有不少朋友使用SQL SERVER做开发也已经有段日子,但还没有或者很少在项目中使用存储过程,
- sql 语句练习与答案
- 深入C++ string.find()函数的用法总结
- SQL Server中删除重复数据的几个方法
- sql删除重复数据的详细方法
- SQL SERVER 2000安装教程图文详解
- 使用sql server management studio 2008 无法查看数据库,提示 无法为该请求检索数据 错误916解决方法
- SQLServer日志清空语句(sql2000,sql2005,sql2008)
- Sql Server 2008完全卸载方法(其他版本类似)
- sql server 2008 不允许保存更改,您所做的更改要求删除并重新创建以下表
- SQL Server 2008 清空删除日志文件(瞬间日志变几M)
- Win7系统安装MySQL5.5.21图解教程
- 将DataTable作为存储过程参数的用法实例详解
- 相关链接:
- 教程说明:
Mssql数据库教程-解析Sqlserver常用函数。