I am hoping someone can hello. I. hoping some here can help be - I'm getting really desperate.I have the following view....CREATE VIEW dbo.vFundPriceHistoryASSELECT TOP 100 PERCENT CONVERT(varchar(16), fph.PriceDate, 3) AS [Date], f.Name + '-' + LEFT(c.Name, 2) AS CurrencyName, fph.PriceFROM dbo.FundPriceHistory fph LEFT OUTER JOIN dbo.Fund f ON fph.FundId = f.FundId LEFT OUTER JOIN dbo.Currency c ON fph.CurrencyId = c.CurrencyIdORDER BY fph.[Date]
Out of which I can do a select * and be returned Date, CurrencyName, Price.The user want to the data in the following format.. CurrencyName CurrencyName CurrencyNameDate Price Price PriceDate Price Price PriceDate Price Price This is on sql server 2000