I am making a reporting tool with an aspx webpage that reads data from SQL tables and inserts that data into the text of a label. So far that's been easy. The question I have is, how can I read multiple rows of data from a table into a single asp.Label
For example,
Impression: Row1; Row2: Row3; Row4; Row5.
SQL Query
SELECT a.Value
From ImpressionEcho a
Inner join PatientData p on a.P_ID p.P_ID where p.P_ID = 1
Gives this data
Mildly dilated aortic root
Moderately dilated aortic root
Possible dissection
Mild mitral regurgitation
Reduced LV diastolic compliance
No significant valvular abnormalities
ASPX code for reader
<Table>
<tr>
<td colspan="2">
<asp:Label ID="Aorta" runat="server" Text="Impression:" ForeColor="Black" Font-Underline="true"></asp:Label>
</td>
<td>
<asp:Label ID="ImpressionReader" runat="server" Text="AortaReader" ForeColor="Black" ></asp:Label>
</td>
</tr>
</Table>
C# Code to call reader
ImpressionReader.Text = reader["Value"].ToString();
I have been searching around and have not found anything to specific to my question so if anyone could help or point me in the right direction it is greatly appreciated.
UPDATE
Eli's answer pointed me in the right direction for those looking for the answer to this in the future this is the SQL query used
SELECT DISTINCT
STUFF((SELECT '; ' + Value
FROM ImpressionEcho data1
FOR XML PATH('')), 1, 1, '') [Impression]
FROM ImpressionEcho data
Which gave me
Mildly dilated aortic root; Moderately dilated aortic root; Possible dissection; Mild mitral regurgitation; Reduced LV diastolic compliance; No significant valvular abnormalities
Then I was able to read ["Impression"] from my C# reader