As written, your comparison of
where 'Country where Aiport is located' = 'USA';
will always fail because the text string 'Country where Aiport is located' is never equal to the text string 'USA'
I think what you might want is a variable name instead of the text string 'Country where Aiport is located', but only you know what that variable name would be. I use "variablename" as the variable name, of course you would use the actual variable name.
Like this:
data task1;
set sasuser.Acities;
where variablename = 'USA';
run;
--
Paige Miller