Click here to Skip to main content
Sign Up to vote bad
good
See more: SQLServer
I have to program a sql procedure to get a result, the result will concatenate all fields of the different records, what i have is a view, in this view number of records has the same ID then I have to return of this format
ID   F
1    1
1    2
1    3
1    4
1    5
 
may i have more repetition or ID or less so the f's must be as much I have repetitions
ID   f1   f2   f3 f4  f5
1     1    2   3   4   5
Posted 7 Nov '12 - 23:36
Edited 8 Nov '12 - 7:30
Maciej Los54.8K


1 solution

Try this:
DECLARE @cols NVARCHAR(200)
DECLARE @dt NVARCHAR(1000)
DECLARE @pt NVARCHAR(2000)
 
SET @cols = STUFF((SELECT DISTINCT '],[' + F
					FROM YourDataBase 
					ORDER BY '],[' + F
			FOR XML PATH('')),1,2,'') + ']'
 
SET @dt = 'SELECT * ' +
        'FROM YourTable'
 
SET @pt = 'SELECT ID, ' + @cols + ' ' +
        'FROM (' + @dt + ') AS DT ' +
        'PIVOT(MAX(F) FOR(ID) IN (' + @cols + ')) AS PT ' +
        'ORDER BY ID'
EXEC (@pt)
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 423
1 OriginalGriff 291
2 Mayur_Panchal 153
3 Mohammed Hameed 145
4 Dave Kreskowiak 125
0 Sergey Alexandrovich Kryukov 8,146
1 OriginalGriff 6,236
2 CPallini 3,482
3 Rohan Leuva 2,703
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 8 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid