473,396 Members | 1,891 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Getting data from multiple rows into one column

I have a table that has values as follows:
PersonID Degree
55 MD
55 Phd
55 RN
60 MD
60 Phd

I need a create a query that will give me output like this:

PersonID Degree
55 MD, Phd, RN
60 MD, Phd

Any ideas

Dec 3 '05 #1
16 43320
bika (ae*****@gmail.com) writes:
I have a table that has values as follows:
PersonID Degree
55 MD
55 Phd
55 RN
60 MD
60 Phd

I need a create a query that will give me output like this:

PersonID Degree
55 MD, Phd, RN
60 MD, Phd


If you are on SQL 2000, you will have to run a cursor. There is no defined
way to produce this result set. (There are some undefined ways which may
work, but I would not recommend to rely on.)

If you are on SQL 2005, this is possible thanks to the improved XML support.
I got this example from an SQL Server developer:

select CustomerID,
substring(OrdIdList, 1, datalength(OrdIdList)/2 - 1)
-- strip the last ',' from the list
from
Customers c cross apply
(select convert(nvarchar(30), OrderID) + ',' as [text()]
from Orders o
where o.CustomerID = c.CustomerID
order by o.OrderID
for xml path('')) as Dummy(OrdIdList)
go

I have not really grasped how it works, but it works. :-)

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Dec 3 '05 #2
Here's another one:

If you know in advance what the different types of degrees are going to
be you can use this query:

select personid,
Min(Case when Degree = 'Md' then degree end) as 'Md',
Min(Case when Degree = 'Phd' then degree end) as 'Phd',
Min(Case when Degree = 'Rn' then degree end) as 'Rn'
from Degrees
group by PersonId

If you dont know in advance what degrees you can expect in the db, you
can use a cursor to produce the 'min(case ... end) as .., ' parts on
the fly:

declare @DegName varchar(50)
declare @Sql nvarchar(4000)

declare c cursor FAST_FORWARD for
select distinct degree from degrees order by degree

open c
fetch next from c into @DegName

set @Sql = 'select personid '
while @@Fetch_Status = 0
begin
set @Sql = @Sql + ', Min(Case when Degree = ''' + @DegName + ''' then
degree end) as ''' + @DegName + ''' '
fetch next from c into @DegName
end
close c
deallocate c
set @Sql = @Sql + ' from Degrees group by PersonId'
print @sql
exec (@sql)

Erland, i actually learned this dynamic sql from you!

Hope this helps,

Gert-Jan

Dec 3 '05 #3
This problem pops up a lot in database newsgroups. If you remember, rule 1
is "no repeating groups". So to create a query that creates repeating groups
goes against the SQL model.

To do this in the most SQL way, Create a table like
CREATE TABLE PersonDegrees(
PersonID int,
IsRN char(1),
Is MD char(1),
IsPHD char(1),
....
....
IsLawyer Char(1))

Where Is...= 'Y' or 'N'

This looks likes a repeatng group, but it is not.

This way you can do queries like:
Show me people that are MDs, PHDs, and not Lawyers.

You can easily populate this table from your original M:M table.

Rich
"bika" <ae*****@gmail.com> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
I have a table that has values as follows:
PersonID Degree
55 MD
55 Phd
55 RN
60 MD
60 Phd

I need a create a query that will give me output like this:

PersonID Degree
55 MD, Phd, RN
60 MD, Phd

Any ideas

Dec 4 '05 #4
Could you explain why you want to violate

1) The foundation of RDBMS, First Normal Form?
2) The most basic rule of a tiered architecture?

If you have a solid reason, woudl you mind publishing it, since that
would overturn 30+ yers of RDBMS and 40+ years of Comp Sci.

Dec 4 '05 #5
--CELKO-- (jc*******@earthlink.net) writes:
Could you explain why you want to violate

1) The foundation of RDBMS, First Normal Form?
Because that is the way the user wants to see the data. You know plain
users does not give a dim wit about first normal forms. For them a
presentation like:

A: 2, 1, 2, 3
B: 3, 4, 5, 3

is probably a very normal form to them.
2) The most basic rule of a tiered architecture?
While this is best done client-side with SQL 2000, I don't think this is
something which is very well supported with report writers. And not all
clients are even that sophisticated. Many reports are run from Query
Analyzer or a similar tool with no formatting capabilities at all. Thus,
any formatting has to be done in the RBDMS.
If you have a solid reason, woudl you mind publishing it, since that
would overturn 30+ yers of RDBMS and 40+ years of Comp Sci.


Incidently, I have told you this several times before. So why do you keep
asking questions, when you do not listen to the answers?
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Dec 4 '05 #6
> The most basic rule of a tiered architecture?

The most basic rule of business is making money. Soemtimes it is way
cheaper to implement formatting just once in the database, as opposed
to doing it in VB, Crystal report, ASP, ASP.Net, whatever else.

Also note that data is transferred to the client in packets. So the
difference between sending over the network 1 packet:

Smith, John 1,3,5,7,17

and sending over the network 2 or more packets:

Smith, John 1
Smith, John 3
Smith, John 5
Smith, John 7
Smith, John 17

is at least 100% drop in performance.

Dec 4 '05 #7
Joe, I'm with you on this one. These young gunners seem to think of RDMS as
a file access mechanism. Just read the MYSQL Newsgroup. BTW I'm about your
age.
"--CELKO--" <jc*******@earthlink.net> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Could you explain why you want to violate

1) The foundation of RDBMS, First Normal Form?
2) The most basic rule of a tiered architecture?

If you have a solid reason, woudl you mind publishing it, since that
would overturn 30+ yers of RDBMS and 40+ years of Comp Sci.

Dec 4 '05 #8
But you notice in this example the number of columns is fixed. Not what the
OP wanted.

Rich
"Erland Sommarskog" <es****@sommarskog.se> wrote in message
news:Xn**********************@127.0.0.1...
--CELKO-- (jc*******@earthlink.net) writes:
Could you explain why you want to violate

1) The foundation of RDBMS, First Normal Form?


Because that is the way the user wants to see the data. You know plain
users does not give a dim wit about first normal forms. For them a
presentation like:

A: 2, 1, 2, 3
B: 3, 4, 5, 3

is probably a very normal form to them.
2) The most basic rule of a tiered architecture?


While this is best done client-side with SQL 2000, I don't think this is
something which is very well supported with report writers. And not all
clients are even that sophisticated. Many reports are run from Query
Analyzer or a similar tool with no formatting capabilities at all. Thus,
any formatting has to be done in the RBDMS.
If you have a solid reason, woudl you mind publishing it, since that
would overturn 30+ yers of RDBMS and 40+ years of Comp Sci.


Incidently, I have told you this several times before. So why do you keep
asking questions, when you do not listen to the answers?
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx

Dec 5 '05 #9
Rich,

So you've never had a requirement as a developer to show a comma seperated
list on the screen, i've done a lot of CRM development and that requirement
is very frequent.

Concatenating on the server scales significantly better than passing back
all the rows to the client/middle tier.

In SQL Server 2005 we can do it in one very simple statement utilising FOR
XML extensions, this makes for less code, less complexity and the logic is
coded once in a central location - do you not agree that is good?

--
Tony Rogerson
SQL Server MVP
http://sqlserverfaq.com - free video tutorials
"Rich Ryan" <ry****@sbcglobal.net> wrote in message
news:OI*****************@newssvr19.news.prodigy.co m...
Joe, I'm with you on this one. These young gunners seem to think of RDMS
as
a file access mechanism. Just read the MYSQL Newsgroup. BTW I'm about your
age.
"--CELKO--" <jc*******@earthlink.net> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Could you explain why you want to violate

1) The foundation of RDBMS, First Normal Form?
2) The most basic rule of a tiered architecture?

If you have a solid reason, woudl you mind publishing it, since that
would overturn 30+ yers of RDBMS and 40+ years of Comp Sci.


Dec 5 '05 #10
> In SQL Server 2005 we can do it in one very simple statement utilising FOR
XML extensions, this makes for less code, less complexity and the logic is
coded once in a central location - do you not agree that is good?


Tony,

how much is the output from FOR XML taxing the network bandwidth?
Most of the xml I'm dealing with is at least 50 times smaller when
zipped.

Dec 5 '05 #11
The beuty about this fellow, eg..

select type,
(
select name + ',' as [text()]
from sys.objects soi
where soi.type = t.type
order by name
for xml path( '' ), root( 'sysobjects' ), type
)
from ( select distinct type from sys.objects ) as t

Will give output like this...

D <sysobjects>DF__spt_value__statu__436BFEE3,</sysobjects>
IT
<sysobjects>queue_messages_1003150619,queue_messag es_1035150733,queue_messages_1067150847,</sysobjects>
P <sysobjects>sp_MSrepl_startup,sp_MScleanupmergepub lisher,</sysobjects>
S
<sysobjects>sysrowsetcolumns,sysrowsets,sysallocun its,sysfiles1,syshobtcolumns,</sysobjects>
SQ
<sysobjects>QueryNotificationErrorsQueue,EventNoti ficationErrorsQueue,ServiceBrokerQueue,</sysobjects>
U
<sysobjects>spt_fallback_db,spt_fallback_dev,spt_f allback_usg,spt_monitor,spt_values,</sysobjects>

Which isn't XML, in fact take the root off and you are just left with the
concatenated data - no tags, its an extension to the FOR XML just for this
purpose which is requested a lot.

Taking the ROOT off gives...

D DF__spt_value__statu__436BFEE3,
IT
queue_messages_1003150619,queue_messages_103515073 3,queue_messages_1067150847,
P sp_MScleanupmergepublisher,sp_MSrepl_startup,
S
sysallocunits,sysasymkeys,sysbinobjs,sysbinsubobjs ,syscerts,syschildinsts,sysclsobjs,syscolpars,sysc onvgroup,sysdbfiles,sysdbreg,sysdercv,sysdesend,sy sendpts,sysfiles1,sysftinds,sysguidrefs,syshobtcol umns,syshobts,sysidxstats,sysiscols,syslnklgns,sys logshippers,sysmultiobjrefs,sysnsobjs,sysobjkeycry pts,sysobjvalues,sysowners,sysprivs,sysqnames,sysr emsvcbinds,sysrmtlgns,sysrowsetcolumns,sysrowsetre fs,sysrowsets,sysrts,sysscalartypes,sysschobjs,sys serefs,syssingleobjrefs,syssqlguides,systypedsubob js,sysusermsgs,syswebmethods,sysxlgns,sysxmitqueue ,sysxmlcomponent,sysxmlfacet,sysxmlplacement,sysxp rops,sysxsrvs,
SQ
EventNotificationErrorsQueue,QueryNotificationErro rsQueue,ServiceBrokerQueue,
U
MSreplication_options,seqnumbers,spt_fallback_db,s pt_fallback_dev,spt_fallback_usg,spt_monitor,spt_v alues,

--
Tony Rogerson
SQL Server MVP
http://sqlserverfaq.com - free video tutorials
"Alexander Kuznetsov" <AK************@hotmail.COM> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com...
In SQL Server 2005 we can do it in one very simple statement utilising
FOR
XML extensions, this makes for less code, less complexity and the logic
is
coded once in a central location - do you not agree that is good?


Tony,

how much is the output from FOR XML taxing the network bandwidth?
Most of the xml I'm dealing with is at least 50 times smaller when
zipped.

Dec 5 '05 #12
Tony,

that's impressive

Dec 5 '05 #13
Impressive - now that's an understatement - its blumin fantastic!

Can you imagine the amount of coding and complexity it replaces! And the
best thing about it is that it scales and performs really well too.

Itzik Ben-Gan showed me it and since I've played with it, its become one of
those you can use it everywhere solutions :)

--
Tony Rogerson
SQL Server MVP
http://sqlserverfaq.com - free video tutorials
"Alexander Kuznetsov" <AK************@hotmail.COM> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Tony,

that's impressive

Dec 5 '05 #14
Thanks for the great ideas everyone.

Tony,
I tried to implement your code but every time I get an error msg, it
doesn't accept elements after "FOR XML"

Dec 6 '05 #15
Its SQL Server 2005 only - are you using 2005?

Tony

--
Tony Rogerson
SQL Server MVP
http://sqlserverfaq.com - free video tutorials
"bika" <ae*****@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Thanks for the great ideas everyone.

Tony,
I tried to implement your code but every time I get an error msg, it
doesn't accept elements after "FOR XML"

Dec 6 '05 #16

Thank you for your response. I too needed to violate years of SQL
theory and flatten out a table into one row per person. Our need is to
easily include and exclude people for solicitation based on their role.
Your statement got reduced a half dozen views down to one and the
performance is better.

Thanks again!
*** Sent via Developersdex http://www.developersdex.com ***
Dec 20 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: John Hunter | last post by:
I have a largish data set (1000 observations x 100 floating point variables), and some of the of the data are missing. I want to try a variety of clustering, neural network, etc, algorithms on the...
15
by: Philip Mette | last post by:
I am begginner at best so I hope someone that is better can help. I have a stored procedure that updates a view that I wrote using 2 cursors.(Kind of a Inner Loop) I wrote it this way Because I...
1
by: Yama | last post by:
Hi, I am really confused. I have created a strong typed dataset for Northwind database Customer table. Now I am loading it with a stream of XML (ADO style) with the following: Customers _cust...
2
by: Joe | last post by:
Hi All, I am new to using the Access DB and I need some help if someone is able to give it to me. What I want to do is get the names of the columns of certain tables. Not the data in the table...
6
by: melanieab | last post by:
Hi, Easy question. It seems to me that I'm following the examples correctly, but apparently I'm not. I'm trying to retrieve the data from a row called "row" and a column called "File". This is...
1
by: Craig Banks | last post by:
If a row of data in a dataset has a lot of columns the row displaying the data in a datagrid will run way off the screen. What I'd like to do is display a row of data over several datagrid rows so...
11
by: Siv | last post by:
Hi, I seem to be having a problem with a DataAdapter against an Access database. My app deletes 3 records runs a da.update(dt) where dt is a data.Datatable. I then proceed to update a list to...
4
by: Sean Shanny | last post by:
To all, Running into an out of memory error on our data warehouse server. This occurs only with our data from the 'September' section of a large fact table. The exact same query running over...
6
by: sgottenyc | last post by:
Hello, If you could assist me with the following situation, I would be very grateful. I have a table of data retrieved from database displayed on screen. To each row of data, I have added...
6
by: insirawali | last post by:
Hi all, I have this problem, i need to know is there a way i cn use the data adapter's update method in this scenario. i have 3 tables as below create table table1{ id1 int identity(1,1)...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.