I have table with values, described as:
select top(4) Name_Country From DBO.Country
| Name_Country |
|---|
| USA |
| ENGLAND |
| ITALY |
| GERMANY |
I need values in pivot format as:
| NAME_1 | NAME_2 | NAME_3 | NAME_4 |
|---|---|---|---|
| USA | ENGLAND | ITALY | GERMANY |
Can anyone help on this?
Thanks in advance