欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

函数PARSENAME使用和截取字符串

程序员文章站 2023-10-17 12:35:30
网上的问题: 下面是Insus.NET的解决办法,仅供参考。 CREATE TABLE #temp([Source] NVARCHAR(100)) INSERT INTO #temp([Source]) VALUES ('2012-04-27 16:49:24$1$2'), ('2012-04-27 ......

网上的问题:

 

 

下面是insus.net的解决办法,仅供参考。

create table #temp([source] nvarchar(100))
insert into #temp([source]) values 
    ('2012-04-27 16:49:24$1$2'),
    ('2012-04-27 17:04:26$2$2'),
    ('2012-04-27 17:18:58$2$2926180')


select [source],
        parsename(replace([source],'$','.'),3) as [日期],
        parsename(replace([source],'$','.'),2) as [考勤机号],
        parsename(replace([source],'$','.'),1) as [员工编号]
from #temp

 

有关parsename函数,这篇《函数parsename使用和截取字符串》 。