Hi
You could do something like this...
Select all the countries and then use the EXECUTE Statement
declare @countries varchar(200)
declare @country varchar(20)
declare @piv varchar(1000)
set @countries = ''
declare cur cursor for
select country from...