I have a countrymaster table in my database sql 2000
If I do
select * from countrymaster
then I get list of all countries rowwise in the output, but I want to get the ouput columnwise, how can I do this
example instead of
USA
UK
France
Canada
I want output as
USA UK France Canada
Pls help, thanks