Domanda

Ho già cercato su Google per questo

  
 I have a Table with following structure in SQL 2000

 ID ContactName Designation
 1  A           CEO
 2  B           ABC
 3  C           DEF
 4  D           GHI

Ho bisogno dell'output come segue


ContactName1 Contactname2 ContactName3 ContactName4
 A CEO        B ABC         C DEF         D GHI

Qualche suggerimento?

È stato utile?

Soluzione

Mi viene in mente che molti degli esempi riguardano query a campi incrociati che implicano l'aggregazione, di cui il tuo non sembra aver bisogno. Anche se non condono necessariamente Dynamic SQL, il seguito dovrebbe darti i risultati che desideri.

Create table #Contacts (id int)
Declare @ContactTypes int
Declare @CAD varchar(100)
Declare @I int
Declare @sql nvarchar(4000)
Set @i = 1
Select @ContactTypes =   
Sum(sub.Types) 
from ( Select Count(1) as Types from contacts
group by ContactName, Designation) as sub
Print @ContactTypes
While @i <= @ContactTypes
Begin
    set @sql = 'alter table #Contacts Add  ContactName' + 
    Cast(@I as varchar(10)) + ' varchar(100)'
    exec sp_executesql @sql
    Set @I = @i + 1
End
Insert into #Contacts (id) values (1)
Set @i = 1
Declare crsPivot  cursor 
for Select ContactName + ' ' + Designation
from contacts
open crsPivot
Fetch next from crsPivot into @CAD
While (@@Fetch_Status = 0)
Begin   
    Set @sql = 'Update  #Contacts  set ContactName' 
    + Cast(@I as varchar(10)) +' = ' + quotename(@CAD,'''')
    exec sp_executesql @sql
    Set @i = @i + 1
    Fetch next from crsPivot into @CAD
End
close crsPivot
Deallocate crsPivot
select * From #Contacts

Altri suggerimenti

Devi utilizzare una Tabella PIVOTATA

Questo dovrebbe funzionare anche con 2000 - wg. senza PIVOT

http://www.sqlteam.com/item.asp?ItemID=2955

Ancora un altro proc di SQL Cross Tab http://johnmacintyre.ca/codespct.asp

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top