I have a query that returns data in the following form

attribute       value
---------      ----------
petid           1000
name            buttercup
species         cat
age             10
owner           Bob Dole

Basically I want to go through every row and return the fields name and species in a single string, so here the result would be

buttercup cat

Any ideas how I could do this?

link|improve this question

You can't do this in plain old standard SQL. You generally have to use a cursor, which is specific to the platform you're on. SQL Server? Oracle? Access? – Dave Markle Jul 13 '09 at 23:14
I'm on MSSQL 2000 – Matt Jul 13 '09 at 23:17
Actually, you don't have to use a cursor as demonstrated by my answer below... stackoverflow.com/questions/1122596/… – Colin Mackay Jul 13 '09 at 23:35
feedback

3 Answers

up vote 2 down vote accepted

Try this. I've only tried it with SQL Serer 2008, but maybe it will work:

DECLARE @Concat nvarchar(50)
SET @Concat=N''

SELECT @Concat = @Concat + Value + N' '
FROM dbo.AttributeValue
WHERE Attribute IN (N'name', N'species')

SELECT @Concat
link|improve this answer
feedback

Okay - Now I think I understand the data format...

Here is the code to create the sample set (just to make sure I've got it right)

CREATE TABLE MyTable
(
attribute varchar(20),
value varchar(20)
)

INSERT INTO MyTable VALUES('petid','1000')
INSERT INTO MyTable VALUES('name','buttercup')
INSERT INTO MyTable VALUES('species','cat')
INSERT INTO MyTable VALUES('age','10')
INSERT INTO MyTable VALUES('owner','Bob Dole')

Here is my answer:

SELECT a.value + ' ' +b.value
FROM MyTable AS a
INNER JOIN MyTable AS b ON a.attribute='name' AND b.attribute = 'species'
link|improve this answer
feedback

The cursor way of doing this would be some thing like this-

DECLARE @name varchar(20) 
DECLARE @species varchar(20)    
DECLARE nameSpeciesCursor CURSOR FOR 
SELECT name, species FROM tableName

OPEN nameSpeciesCursor 
FETCH NEXT FROM nameSpeciesCursor INTO @name, @species  

WHILE @@FETCH_STATUS = 0  
BEGIN  
       PRINT @name + ' ' + @species    
       FETCH NEXT FROM nameSpeciesCursor INTO @name, @species  
END  

CLOSE nameSpeciesCursor 
DEALLOCATE nameSpeciesCursor

cheers

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.