Home > Database > Mysql Tutorial > 数据库表字段数据分割问题

数据库表字段数据分割问题

WBOY
Release: 2016-06-07 16:03:03
Original
1414 people have browsed it

有的时候为了减少存储记录数,可能会把多条记录合并为一条显示。这种情况的发生主要体现上记录在表的其它字段都相同,只有某一个字段是变化的这种情况,例如人事管理中,部门中的相关人的ID都放在一条记录的一个字段中,中间用逗号隔开。现在的需求就是要将

有的时候为了减少存储记录数,可能会把多条记录合并为一条显示。这种情况的发生主要体现上记录在表的其它字段都相同,只有某一个字段是变化的这种情况,例如人事管理中,部门中的相关人的ID都放在一条记录的一个字段中,中间用逗号隔开。现在的需求就是要将一条记录按ID字段分割成多条记录。

CREATE TABLE [dbo].[Table_Dept](
	[DEPT_CODE] [int] NULL,
	[content] [nvarchar](50) NULL,
	[A0188s] [nvarchar](max) NULL
) ON [PRIMARY]

GO

insert into Table_Dept select 1000,'总务系','350,688,258' union all select 1001,'总经理室','2,3,4,298'

查询该表结果如下,其中DEPT_CODE部门编码,content是部门名称,A0188s是相关人。
Copy after login

\

现在需要将A0188s中的ID分解为多条显示。考虑采用自定义字符串分割函数实现,分割函数脚本:

CREATE   FUNCTION [dbo].[Split]   
(   
@c VARCHAR(MAX) ,   
@split VARCHAR(50)   
)   
RETURNS @t TABLE ( col VARCHAR(50) )   
AS  
BEGIN  
    WHILE ( CHARINDEX(@split, @c) <> 0 )   
        BEGIN  
            INSERT  @t( col )   
            VALUES  ( SUBSTRING(@c, 1, CHARINDEX(@split, @c) - 1) )   
            SET @c = STUFF(@c, 1, CHARINDEX(@split, @c), &#39;&#39;)   
        END  
    INSERT  @t( col ) VALUES  ( @c )   
    RETURN  
END
Copy after login
但是该函数只能处理单条记录,这里考虑采用游标遍历原表,逐个分解然后存储到临时表中。
IF object_id(&#39;tempdb..#TEMPTB1&#39;) is not null
BEGIN
	drop table #TEMPTB1
END
CREATE table #TEMPTB1
(
    [DEPT_CODE] [int] NULL,
    [content] [nvarchar](50) NULL,
    [A0188s] [nvarchar](max) NULL
)

IF object_id(&#39;tempdb..#TEMPTB2&#39;) is not null
BEGIN
	drop table #TEMPTB2
END
CREATE table #TEMPTB2
(
    [pid] [nvarchar](max) NULL
)

declare @DEPT_CODE int
declare @content varchar(50)
declare @A0188s varchar(max)
exec(&#39;declare my_cursor1 cursor for select * from [Table_Dept]&#39;)
open my_cursor1
declare @id1 sysname
declare @id2 sysname
declare @id3 sysname
fetch next from my_cursor1 into @id1,@id2,@id3
	while(@@fetch_status= 0)
		begin	
			set @DEPT_CODE =convert(int,@id1)
			set @content =convert(varchar(50),@id2)
			set @A0188s =convert(varchar(max),@id3)
			truncate table #TEMPTB2
		     insert into #TEMPTB2 select * from Split(@A0188s,&#39;,&#39;)
		     insert into #TEMPTB1 select @DEPT_CODE,@content,pid from #TEMPTB2
			fetch next from my_cursor1 into @id1,@id2,@id3
		end
close my_cursor1
deallocate my_cursor1

select * from #TEMPTB1
Copy after login
得到最终结果

\

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template