I want a multi records result in one row like this detail...
SELECT Sampleid, Test, [Result] FROM [tblSartoriusFinal]
where sampleid='77-5080-08'
''''''''''''''''''''''''''''''''''' Output
Sampleid Test Result
77-5080-08 Test1 0.0910
77-5080-08 Test2 33.9700
77-5080-08 Test3 16908.0000
............. My requirement is one line output and result field in name against its test like
SampleID, Test1, Test2, Test3
77-5080-08 0.0910 33.9700 16908.0000