In a SQL Server how to change column data's as a row wise format?...
For ex:
Input
Name date
--------------
xxx 12/12/2015
xxx 11/12/2015
xxx 10/12/2015
yyy 9/12/2015
Desired output:
Name Date
------------------------------------------
xxx 10/12/2015 11/12/2015 12/12/2015
yyy 9/12/2015