Hi All,
I have a table with one column, lets say DataField as varchar(255)
If I run select statement I get like this
Select DataField from table
Output:
DataField
A:01 B:02 C:03 D:04 E:05
But when I copy / paste same data in SSMS or notepad, it shows breaking data into multiple lines like this..
DataField
A:01
B:02
C:03
D:04
E:05
I need SQL query to show data in regular text format instead of <br>(breaking)
DataField
A:01 B:02 C:03 D:04 E:05
Thanks,
RH
sql