SQLServer right函数 从右侧截取指定位数的字符串

Posted 海宝lly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLServer right函数 从右侧截取指定位数的字符串相关的知识,希望对你有一定的参考价值。

right(字段名,n)

sql从右侧截取字符串。n代表从右侧截取的位数。

 

SELECT RIGHT(123456, 4)
SELECT LEFT(123456, 4)

--------------------------------------------------------------

举个栗子:

declare @starttime as datetime
declare @endtime as datetime
set @starttime = GETDATE()--‘2018-06-19 17:08:02.000‘ 
set @endtime = 2018-06-20 17:08:02.000

select right(00+ cast(cast(datediff(ss ,@starttime,@endtime) / 3600 as int) as varchar),2) + : + 
right(00+ cast(cast(datediff(ss ,@starttime,@endtime) % 3600 / 60 as int) as varchar),2) + : + 
right(00+ cast(cast(datediff(ss ,@starttime,@endtime) % 60 as int) as varchar),2)

 

以上是关于SQLServer right函数 从右侧截取指定位数的字符串的主要内容,如果未能解决你的问题,请参考以下文章

sql字符串截取查询,该怎么解决

excel怎么截取字符串

mysql怎么截取字段的字符串

mysql 截取指定位置后面的所有的字符

在excel如何用函数把地址中省份、城市、区县单独提取出来?

SQL Server中截取字符串常用函数