Convert single column to single row
问题 I have a table with a single column like so: +-------------+ |(Column Name)| +-------------+ |Data1 | +-------------+ |Data2 | +-------------+ |Data3 | +-------------+ |Data4 | +-------------+ |Data5 | +-------------+ What I want to do seems very simple, but I am not able to find any examples of it anywhere. All I want is to convert the above column into a single row like so: +-------+-------+-------+-------+-------+ | (Col1)| (Col2)| (Col3)| (Col4)| (Col5)| +-------+-------+-------+-------+-