You need to create an In List that it is to be later used in
a Where Clause that includes all the Regions that begin with
the letter A from the sashelp.shoes table. Using PROC SQL
with an into clause create the following string from the
sashelp.shoes table using the variable region
“AFRICA”,”ASIA”,…..

Answer Posted / ragg

here is the code for your question.
proc sql;
select *
from sashelp.shoes
where Region like 'A%';
quit;
it will list out all letters starting with 'A'in region variable.

Is This Answer Correct ?    15 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is factor analysis?

673


what is the difference between nodup and nodupkey options? : Sas programming

629


what is null hypothesis? why do you consider that?

2429


Of all your work, where have you been the most successful?

4213


What do the SAS log messages "numeric values have been converted to character" mean?

898






Describe the function and utility of the most difficult SAS macro that you have written?

2037


Name few SAS functions?

675


What can you learn from the SAS log when debugging?

925


What are the limitations for memory allocation for SAS variables

941


what is metadata? : Sas-bi

612


how many display types available in sas bi dashboard? : Sas-bi

646


Describe the function and untility of the most difficult SAS macro that you have written.

1738


where to use sas business intelligence? : Sas-bi

586


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

613


How would you define the end of a macro?

710